-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.03 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
{
"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,
"deprecated": false,
"description": "Build-in dependency collection, a predictable、zero-cost-use、progressive、high performance's react develop framework",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@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/preset-react": "^7.9.4",
"@babel/runtime": "^7.5.4",
"@lopatnov/rollup-plugin-uglify": "^2.1.5",
"@types/jest": "^26.0.23",
"acorn": "^8.0.4",
"ajv": ">=6.12.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"codecov": "^3.7.1",
"coveralls": "^3.1.0",
"create-react-class": "^15.7.0",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"es3ify": "^0.2.0",
"eslint": "^7.32.0",
"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",
"glob-parent": ">=5.1.2",
"jest": "^26.6.3",
"jest-dom": "^1.12.0",
"kind-of": "^6.0.3",
"minimist": ">=1.2.6",
"mixin-deep": "^2.0.1",
"node-fetch": "^3.2.10",
"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-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"semver": "^5.5.0",
"set-value": "^4.0.1",
"terser": "^5.15.0",
"uglify-js": "3.5.8",
"yargs-parser": "^20.2.1"
},
"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",
"name": "concent",
"main": "lib/index.js",
"module": "es/index.js",
"types": "src/types.d.ts",
"unpkg": "dist/concent.js",
"npmFileMap": [{
"basePath": "/dist/",
"files": [
"*.js"
]
}],
"npmName": "concent",
"peerDependencies": {
"@types/react": ">=16.8.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/concentjs/concent.git"
},
"scripts": {
"about_build_es": "if use 'cross-env BABEL_ENV=es babel src --out-dir es', it will cause error of can not create class without new error",
"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-cpway": "rm -rf ./es/* && cp -r ./src/* ./es",
"build:es-rightway": "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.legacy.js",
"build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c -o dist/concent.legacy.min.js",
"test": "jest",
"cov": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"pub": "npm publish --registry=https://registry.npmjs.org"
},
"dependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"resolutions": {
"minimist": "1.2.6"
},
"version": "2.21.9"
}