-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.07 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
{
"name": "ci-cd-demo",
"version": "1.0.0",
"description": "Demonstrating CI/CD with Travis and Heroku",
"main": "server",
"scripts": {
"start": "node server",
"test": "ava test/tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pohutukawa-2017/ci-cd-demo.git"
},
"author": "EDA",
"license": "MIT",
"bugs": {
"url": "https://github.com/pohutukawa-2017/ci-cd-demo/issues"
},
"homepage": "https://github.com/pohutukawa-2017/ci-cd-demo",
"babel": {
"presets": [
"es2015",
"react"
]
},
"ava": {
"babel": "inherit",
"require": [
"./test/setup-env.js"
]
},
"dependencies": {
"express": "^4.14.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.18.0",
"enzyme": "^2.8.2",
"jsdom": "^10.1.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"webpack": "^2.4.1"
}
}