-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@storeon/undo",
"version": "1.1.0",
"description": "Module for storeon which allows undoing or redoing the latest event",
"repository": "storeon/undo",
"author": "Ivan Menshykov <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint *.js full/*.js test/*.js test/demo/*.js",
"size": "size-limit",
"jest": "NODE_ENV=development jest --coverage test/*.js",
"spell": "yarn docs && yaspeller *.md",
"docs": "documentation build *.js -f md -o api.md",
"test": "yarn jest && yarn lint && size-limit && yarn spell",
"start": "parcel serve --cache-dir test/demo/.cache -d test/demo/dist test/demo/index.html --open"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.2",
"@logux/eslint-config": "^39.0.3",
"@size-limit/preset-small-lib": "^4.5.1",
"clean-publish": "^1.1.7",
"deep-freeze": "^0.0.1",
"documentation": "^13.0.1",
"dual-publish": "^0.9.0",
"eslint": "^7.3.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-prettierx": "^0.12.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^20.1.0",
"jest": "^26.0.1",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"size-limit": "^4.5.1",
"storeon": "^3.0.3",
"yaspeller": "^7.0.0"
},
"size-limit": [
{
"path": "index.js",
"limit": "395 B"
},
{
"path": "full/index.js",
"limit": "430 B"
}
],
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"es5/no-es6-static-methods": "off",
"consistent-return": "off",
"func-style": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"dictionary": [
"storeon",
"Versioning",
"undoable",
"createHistory",
"eslint",
"lefthook",
"rndr",
"github",
"linter"
]
}
}