-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
55
56
57
58
{
"name": "svelte-history-router",
"version": "1.0.0-beta.16",
"description": "A svelte history router.",
"author": "Si3nLoong <[email protected]> (https://github.com/si3nloong)",
"homepage": "https://github.com/wetix/svelte-history-router#readme",
"license": "MIT",
"main": "lib/cjs/index.js",
"browser": "lib/index.js",
"module": "lib/esm/index.js",
"unpkg": "lib/index.min.js",
"svelte": "src/index.js",
"types": "types/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"lib",
"types"
],
"scripts": {
"cypress": "./node_modules/.bin/cypress open",
"prepublishOnly": "npm run build",
"build": "rimraf ./lib && rollup -c",
"dev": "rollup -w --config rollup.dev.config.js",
"start": "sirv public --no-clear --single",
"validate": "svelte-check",
"tsd": "tsc -p tsd.json"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/svelte": "^3.0.0",
"@wetix/utils": "^1.0.0-alpha.0",
"core-js": "^3.12.1",
"cypress": "^9.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.49.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^2.0.1",
"svelte": "^3.38.2",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.7.3",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}