-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
60
{
"name": "cross-tab",
"version": "0.1.0",
"description": "Module for storeon to update data at different browser tabs",
"main": "index.js",
"author": "Ivan Solovev <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf api.md",
"lint": "eslint *.js",
"spell": "yarn docs && yaspeller *.md",
"docs": "documentation build *.js -f md -o api.md",
"test": "yarn lint && size-limit && yarn spell"
},
"devDependencies": {
"@logux/eslint-config": "^28.2.1",
"clean-publish": "^1.1.2",
"documentation": "^11.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-es5": "^1.3.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-import-helpers": "^0.1.4",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"rimraf": "^2.6.3",
"size-limit": "^1.3.1",
"storeon": "^0.8.2",
"yaspeller": "^5.1.0"
},
"size-limit": [
{
"path": "index.js",
"limit": "165 B"
}
],
"lint-staged": {
"*.md": "yaspeller",
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"dictionary": [
"storeon",
"versioning"
]
}
}