-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "redux-prim",
"version": "1.0.2",
"description": "redux helper tool to abstract action and reducer with getDefaultState and updaters.",
"main": "dist/redux-prim.js",
"typings": "dist/redux-prim.d.ts",
"files": [
"dist",
"src",
"README_CH.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "npx ts-node ./src/index.ts",
"test": "cross-env TS_NODE_FILES=true mocha ./test/*",
"coverage": "nyc npm run test",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SijieCai/redux-prim.git"
},
"author": "SijieCai <sijie.cai@qq.com> (https://github.com/SijieCai)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SijieCai/redux-prim/issues"
},
"homepage": "https://github.com/SijieCai/redux-prim#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"sideEffects": false
}