-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.15 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
{
"name": "odux",
"version": "0.3.13",
"description": "observable redux",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"module": "./es/index.js",
"scripts": {
"clean": "rimraf -- dist lib/**/*.js lib/**/*.js.map lib/**/*.d.ts test/**/*.js test/**/*.js.map test/**/*.d.ts",
"lint": "tslint -p .",
"autod": "autod",
"build:prod": "tsc && babel lib --out-dir lib",
"build:dist": "webpack --progress",
"test": "npm run lint -- --fix && npm run test-local",
"test:prod": "npm run build:prod && ava -v -s",
"test-local": "tsc && ava -v -s",
"coverage": "nyc npm test",
"coverage:report": "nyc report --reporter=lcov",
"coverage:upload": "cat ./coverage/lcov.info | coveralls",
"report": "npm run coverage && npm run coverage:report",
"prepublish": "npm run clean && npm run test && npm run build:prod",
"postpublish": "node scripts/published.js",
"es": "rimraf -- es && tsc -p tsconfig.es.json"
},
"ava": {
"files": [
"test/**/*.js"
]
},
"files": [
"es/**/*.js",
"lib/**/*.js",
"lib/**/*.d.ts",
"dist"
],
"keywords": [
"react",
"redux",
"observable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zhang740/odux.git"
},
"author": "zhang740",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhang740/odux/issues"
},
"homepage": "https://github.com/zhang740/odux#readme",
"dependencies": {
"@types/hoist-non-react-statics": "^3.3.0",
"@types/prop-types": "^15.5.9",
"hoist-non-react-statics": "^3.3.0",
"immer": "^2.1.0",
"power-di": "^1.4.17",
"prop-types": "^15.7.2",
"redux": "^4.0.1"
},
"devDependencies": {
"@types/node": "^9.4.0",
"@types/react": "^16.0.35",
"@types/react-test-renderer": "^16.0.0",
"ava": "^0.25.0",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"coveralls": "^3.0.0",
"nyc": "^11.4.1",
"react": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"ts-loader": "^3.3.1",
"tslint": "^5.9.1",
"typescript": "^3.3.3333",
"webpack": "^3.10.0"
}
}