-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@auroratide/svelte-custom-element-transitions",
"version": "0.1.1",
"description": "Utility for making svelte transitions work on custom elements",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"svelte",
"transitions",
"web components"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist examples/public/build",
"preexample": "npm run build",
"example": "rollup -c examples/rollup.config.js -w",
"preexample:build": "npm run build",
"example:build": "rollup -c examples/rollup.config.js",
"example:server": "sirv examples/public",
"pretest": "npm run example:build",
"test": "testcafe --app \"npm run example:server\" chrome verification.ts",
"prepublishOnly": "npm-run-all clean test"
},
"author": {
"name": "Timothy Foster",
"url": "https://auroratide.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Auroratide/svelte-custom-element-transitions"
},
"license": "ISC",
"peerDependencies": {
"svelte": "3.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/mathjs": "^6.0.11",
"mathjs": "^9.3.2",
"npm-run-all": "^4.1.5",
"rollup": "^2.45.2",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^1.0.11",
"svelte": "^3.37.0",
"svelte-preprocess": "^4.7.2",
"testcafe": "^1.14.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}