forked from heluxjs/helux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.8 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
{
"_from": "concent",
"_id": "[email protected]",
"_inBundle": false,
"_integrity": "sha512-YuakaB+lTidx3v4cMrObLoKISm+26UVRqtD6qXscHQ3gWR6SQTVBnKxv+JdiJ+06GMmgIY6e8816TqLkcSw1Pg==",
"_location": "/concent",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "concent",
"name": "concent",
"escapedName": "concent",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/concent/-/concent-2.4.0.tgz",
"_shasum": "0263218dcab09c31aa321e615b11060426cb6ac0",
"_spec": "concent",
"_where": "/Users/fancy/Desktop/code/my-open-source/cc-demo",
"author": {
"name": "fantasticsoul",
"email": "[email protected]",
"url": "https://github.com/fantasticsoul"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"bugs": {
"url": "https://github.com/concentjs/concent/issues"
},
"bundleDependencies": false,
"peerDependencies": {
"@types/react": "^16.9.13",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"deprecated": false,
"description": "control your react component state in a funny way, every react instance of different class if they were registered in concent own the ability of knowing and syncing each other's state, just have a try and discover more^_^",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-display-name": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.5.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"codecov": "^3.0.2",
"create-react-class": "^15.6.3",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"es3ify": "^0.2.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.9.1",
"glob": "^7.1.1",
"jest": "^23.6.0",
"jest-dom": "^1.12.0",
"npm-run": "^5.0.1",
"prettier": "1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.66.5",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0",
"semver": "^5.5.0",
"uglify-js": "3.5.8"
},
"files": [
"dist",
"lib",
"es",
"src"
],
"homepage": "https://github.com/concentjs/concent#readme",
"keywords": [
"react",
"react control center",
"concent",
"state management",
"state sync",
"state broadcast",
"state dispatch",
"work with redux",
"replace redux"
],
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"module": "es/index.js",
"name": "concent",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"npmName": "concent",
"repository": {
"type": "git",
"url": "git+https://github.com/concentjs/concent.git"
},
"scripts": {
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "rm -rf ./es/* && cp -r ./src/* ./es",
"build:es-old": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c -o dist/concent.js",
"build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c -o dist/concent.min.js",
"test": "jest"
},
"unpkg": "dist/concent.js",
"version": "2.4.0"
}