-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.39 KB
/
package.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.39 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@storeon/router",
"version": "2.0.1",
"description": "Storeon module for URL routing",
"main": "./index.js",
"types": "./index.d.ts",
"author": "Ivan Solovev <ivan@solovev.one>",
"license": "MIT",
"scripts": {
"check": "yarn run test && yarn run lint && size-limit && yarn run spell",
"lint": "eslint *.js test/*.js examples/**/*.js",
"spell": "yaspeller *.md",
"test": "jest --coverage",
"build:example": "parcel build examples/vanilla/index.html --experimental-scope-hoisting --no-cache --no-source-maps --public-url .",
"watch:vanilla": "parcel serve examples/vanilla/index.html --no-cache --no-source-maps",
"watch:react": "parcel serve examples/react/src/index.html --no-cache --no-source-maps",
"watch:svelte": "parcel serve examples/svelte/src/index.html --no-cache --no-source-maps"
},
"devDependencies": {
"@logux/eslint-config": "^45.2.1",
"@size-limit/dual-publish": "^4.10.2",
"@size-limit/preset-small-lib": "^4.10.2",
"dual-publish": "^1.0.5",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest": "^24.3.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettierx": "^0.17.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-unicorn": "^29.0.0",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-svelte": "^4.0.6",
"size-limit": "^4.10.2",
"storeon": "^3.1.4",
"typescript": "^4.2.3",
"yaspeller": "^7.0.0"
},
"size-limit": [
{
"import": {
"index.js": "{ routerNavigate, routerChanged, routerKey, createRouter }"
},
"limit": "577 B"
}
],
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"dictionary": [
"storeon",
"DevTools",
"preact",
"versioning",
"crosstab",
"gzipped",
"GitHub",
"createRouter",
"storeCallback",
"RegExp",
"params",
"routerChanged",
"routerNavigate",
"routerKey",
"ES2016",
"ES",
"seamlessly"
]
},
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"symbol-description": "off"
}
}
}