-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "@conveyal/woonerf",
"description": "React/Redux bootstrapping and common libs for Conveyal",
"main": "index.js",
"repository": {
"url": "https://github.com/conveyal/woonerf",
"type": "git"
},
"scripts": {
"cover": "mastarm test --env test --coverage --coverage-paths \"src/**/*.js\"",
"clean": "rm -r components reducers store ./*.js ./*.js.map",
"jest": "mastarm test --env test",
"lint": "mastarm lint src",
"prepublish": "mastarm prepublish src --outdir ./",
"pretest": "yarn && yarn clean",
"test": "mastarm lint src/ && mastarm test --env test",
"semantic-release": "semantic-release"
},
"author": "Trevor Gerhardt <trevorgerhardt@gmail.com>",
"license": "MIT",
"dependencies": {
"debug": "^4.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.11",
"logrocket": "^0.6.17",
"react-redux": "^5.0.7",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"mastarm": "^5.1.3",
"nock": "^9.6.1",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-test-renderer": "^16.5.0",
"semantic-release": "^15.9.15"
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>src/setup-tests.js"
}
}