-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.4 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
{
"scripts": {
"build": "babel src/* --ignore '**/*.test.js' --out-dir dist -d",
"prepublishOnly": "yarn build"
},
"repository": {
"url": "https://github.com/storkenjs/storken",
"type": "git"
},
"name": "storken",
"version": "2.0.11",
"description": "Hook based extendable minimal state manager for React.",
"keywords": [
"state",
"react",
"javascript",
"js",
"state manager",
"global state manager",
"minimal",
"extendable",
"plugin",
"loading",
"getter",
"setter"
],
"author": "Kerem Noras <[email protected]>",
"main": "dist/storken.js",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-plugin-loop-optimizer": "^1.4.1",
"babel-preset-minify": "^0.5.1",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.2.2",
"react": "^16.13.1"
}
}