This repository was archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "flipstate",
"version": "1.3.1",
"description": "Scalable state management with Context API",
"main": "index.js",
"scripts": {
"lint": "eslint --fix .",
"build": "node build.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"preact",
"context",
"state",
"action"
],
"author": "Ronald Chen",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/concept-not-found/flipstate.git"
},
"bugs": {
"url": "https://github.com/concept-not-found/flipstate/issues"
},
"homepage": "https://github.com/concept-not-found/flipstate#readme",
"dependencies": {
"is-plain-object": "2.0.4"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-react": "7.9.1",
"eslint-plugin-standard": "3.1.0",
"preact": "8.2.9",
"preact-context": "1.0.2",
"react": "16.4.0",
"rollup": "0.60.1",
"rollup-plugin-babel": "3.0.4",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-conditional": "1.1.1",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-strip-code": "0.2.5",
"rollup-plugin-terser": "1.0.1"
}
}