-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@storeon/localstorage",
"version": "1.5.0",
"description": "Module for storeon to persist data from state to local storage",
"repository": "storeon/localstorage",
"author": "Ivan Menshykov <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint *.js test/*.js test/demo/*.js",
"size": "size-limit",
"docs": "documentation build *.js -f md -o api.md",
"test": "jest --coverage && yarn lint && size-limit",
"start": "parcel serve --cache-dir test/demo/.cache -d test/demo/dist test/demo/index.html --open"
},
"devDependencies": {
"@logux/eslint-config": "^45.2.0",
"@size-limit/preset-small-lib": "^4.10.1",
"clean-publish": "^2.1.0",
"documentation": "^13.1.1",
"dual-publish": "^1.0.4",
"eslint": "^7.21.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.2.1",
"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": "^28.0.2",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"parcel-bundler": "^1.12.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"simple-git-hooks": "^2.0.2",
"size-limit": "^4.10.1",
"storeon": "^3.1.4"
},
"size-limit": [
{
"path": "index.js",
"limit": "308 B"
}
],
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"consistent-return": "off",
"func-style": "off",
"unicorn/prefer-optional-catch-binding": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"lint-staged": {
"*.js": "yarn test"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}