-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.6 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
59
{
"name": "svelte-hash-router",
"version": "1.0.1",
"description": "Svelte Hash Router",
"keywords": [
"hash",
"router",
"spa",
"svelte",
"svelte3"
],
"repository": "github:pynnl/svelte-hash-router",
"license": "MIT",
"author": "pynnl",
"files": [
"src"
],
"main": "src/index.js",
"scripts": {
"lint": "run-s lint:es lint:style",
"lint:es": "eslint .",
"lint:style": "stylelint .",
"test": "run-s lint test:build test:start",
"test:dev": "npm run test:build -- -w",
"test:build": "rollup -c",
"test:server": "browser-sync test --no-ui --no-open",
"test:start": "server-test test:server 3000 test:cy",
"test:cy": "cypress run --spec cypress/integration/main.spec.js"
},
"dependencies": {
"url-pattern": "^1.0.3"
},
"devDependencies": {
"cypress": "^3.4.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-svelte3": "^1.2.3",
"npm-run-all": "^4.1.5",
"rollup": "^1.19.4",
"rollup-plugin-browsersync": "^1.0.0",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.0",
"start-server-and-test": "^1.10.0",
"stylelint": "^10.1.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^3.0.1",
"svelte": "^3.7.1"
},
"peerDependencies": {
"svelte": "^3.7.1"
}
}