forked from storeon/storeon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
150 lines (150 loc) · 3.36 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "storeon",
"version": "0.9.5",
"description": "Tiny (173 bytes) event-based Redux-like state manager for React and Preact",
"keywords": [
"state",
"immutable",
"react",
"preact",
"hook"
],
"scripts": {
"api": "documentation build *.js -f md -o api.md",
"spell": "yarn api && yaspeller-ci *.md",
"clean": "rimraf api.md coverage/ test/demo/.cache test/demo/dist",
"test": "jest --coverage && eslint-ci . && size-limit && yarn spell",
"start": "parcel serve --cache-dir test/demo/.cache -d test/demo/dist test/demo/index.html --open"
},
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "storeon/storeon",
"browser": {
"./devtools/logger.js": "./devtools/logger.browser.js"
},
"devDependencies": {
"@logux/eslint-config": "^31.0.0",
"@logux/sharec-config": "^0.4.1",
"@size-limit/preset-small-lib": "^2.1.1",
"@types/react": "^16.9.2",
"clean-publish": "^1.1.2",
"documentation": "^12.1.1",
"eslint": "^6.2.1",
"eslint-ci": "^1.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.3",
"nanodelay": "^0.1.4",
"parcel-bundler": "^1.12.3",
"preact": "^10.0.0-alpha.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"rimraf": "^3.0.0",
"typescript": "^3.5.3",
"yaspeller": "^6.0.0",
"yaspeller-ci": "^1.0.1"
},
"size-limit": [
{
"name": "core",
"path": "index.js",
"limit": "173 B"
},
{
"name": "core + react hook",
"path": [
"index.js",
"react/index.js"
],
"limit": "349 B",
"ignore": [
"react"
]
},
{
"name": "core + react decorator",
"path": [
"index.js",
"react/connect.js"
],
"limit": "408 B",
"ignore": [
"react"
]
},
{
"name": "devtools",
"path": [
"devtools/index.browser.js",
"devtools/logger.browser.js"
],
"limit": "186 B"
}
],
"eslintConfig": {
"extends": "@logux/eslint-config/browser",
"rules": {
"node/no-unpublished-require": "off",
"es5/no-es6-static-methods": "off",
"func-style": "off"
}
},
"eslintIgnore": [
"node_modules",
"test/demo/dist"
],
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"ignoreText": [
" \\(by [^)]+\\)."
],
"dictionary": [
"Versioning",
"createStore",
"moduleInitializer",
"Preact",
"Redux",
"gzipped",
"Storeon A",
"Redux’s",
"async",
"StoreContext",
"Storeon",
"DevTools",
"useStoreon",
"polyfill",
"UIBook",
"UI"
]
},
"sharec": {
"version": "0.4.1"
}
}