-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "dob-redux",
"version": "1.0.0",
"description": "",
"main": "built/src/index.js",
"types": "src/index.ts",
"scripts": {
"test": "tsc && nyc --reporter=lcov --reporter=text --reporter=json ava && rm -rf .nyc_output",
"posttest": "codecov -f coverage/*.json -t e4c85702-b2b7-4580-bb91-f24407c55f24",
"prepublish": "rm -rf built && tsc && babel built --out-dir built && npm run build",
"start": "run-react develop",
"tslint": "tslint './src/**/*.?(ts|tsx)'",
"build": "webpack --config built/scripts/webpack.config.js"
},
"ava": {
"files": [
"built/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dobjs/dob-redux.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dobjs/dob-redux/issues"
},
"homepage": "https://github.com/dobjs/dob-redux#readme",
"devDependencies": {
"@types/node": "*",
"@types/react": "*",
"@types/webpack": "^3.8.1",
"ascoders-tslint-config": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.5",
"codecov": "^3.0.0",
"nyc": "^11.3.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"run-react": "^2.1.2",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"webpack": "^3.8.1"
},
"dependencies": {
"dob": "^2.5.4",
"immutable": "^3.8.2",
"redux": "^3.7.2"
},
"pre-commit": [
"tslint"
],
"run-react": {
"entrys": [
"demos/index.tsx"
],
"dlls": [
"react",
"react-dom"
]
}
}