-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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": "boiler-room-runner",
"version": "2.1.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/everydayhero/boiler-room-runner.git"
},
"main": "dist/index.js",
"scripts": {
"build": "babel source -d dist",
"test:server": "mocha ./source/server/test.js",
"test:client": "browserify ./source/client/test.js -t [ babelify --presets [ @babel/preset-env ] ] | testling",
"test": "npm run test:server && npm run test:client",
"prepublish": "npm test && npm run build"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"browsers": [
"last 2 versions",
"> 1%"
]
}
}
]
]
},
"author": "Brad Parker <[email protected]>",
"license": "ISC",
"dependencies": {
"react-redux": "^5.0.7",
"react-router-scroll": "^0.4.2",
"redial": "^0.5.0",
"redux": "^4.0.0",
"scroll-behavior": "0.8.1"
},
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router": "^3.2.0",
"history": "^3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babelify": "^10.0.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"es6-promise": "^3.2.1",
"es6-shim": "^0.35.3",
"history": "^3.2.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router": "^3.2.0",
"sinon": "^1.17.4",
"tape": "^4.5.1",
"testling": "^1.7.1"
}
}