-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 KB
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
79
80
81
82
{
"name": "gemini-ci-gui",
"version": "0.0.0-dev",
"description": "CI GUI for Gemini",
"keywords": [
"gemini",
"gemini-gui",
"gui",
"regression",
"screenshot"
],
"author": "Mathias Schreck <schreck.mathias@gmail.com>",
"license": "MIT",
"main": "server/createServer.js",
"bin": "server/index.js",
"files": [
"server/",
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "BABEL_ENV=build rollup -c rollup.config.js",
"lint": "eslint --ext .js --ext .jsx .",
"test:unit": "NODE_ENV=test BABEL_ENV=test ava 'test/**/*Spec.js'",
"pretest": "npm run lint",
"test": "npm run test:unit",
"start": "./server/index.js"
},
"dependencies": {
"bluebird": "3.4.6",
"body-parser": "1.15.2",
"chart.js": "1.1.1",
"express": "4.14.0",
"gemini-json-reporter": "1.0.1",
"material-ui": "0.16.0",
"mkdirp": "0.5.1",
"ramda": "0.22.1",
"react": "15.3.2",
"react-chartjs": "0.8.0",
"react-dom": "15.3.2",
"react-tap-event-plugin": "1.0.0"
},
"devDependencies": {
"ava": "0.16.0",
"babel-core": "6.17.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-es2015-rollup": "1.2.0",
"babel-preset-react": "6.16.0",
"babel-register": "6.16.3",
"enzyme": "2.4.1",
"eslint": "3.7.1",
"eslint-config-holidaycheck": "0.10.0",
"eslint-plugin-ava": "3.1.0",
"eslint-plugin-import": "2.0.0",
"eslint-plugin-react": "6.3.0",
"react-addons-test-utils": "15.3.2",
"rollup": "0.36.1",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-commonjs": "5.0.4",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-replace": "1.1.1",
"rollup-plugin-uglify": "1.0.1",
"sinon": "1.17.6",
"sinon-as-promised": "4.0.2",
"supertest": "2.0.0"
},
"ava": {
"require": "babel-register",
"babel": {
"babelrc": true,
"presets": [
"es2015",
"react"
]
}
},
"repository": {
"type": "git",
"url": "git://github.com/holidaycheck/gemini-ci-gui.git"
}
}