-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "caffeine-routine-galileo",
"version": "1.0.0",
"description": "Galileo part of Caffeine Routine",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha -c",
"start": "node src/index.js",
"lint": "node_modules/.bin/eslint **/**.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeSpaceHQ/caffeine-routine-galileo.git"
},
"author": "Alexander Clines",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeSpaceHQ/caffeine-routine-galileo/issues"
},
"homepage": "https://github.com/CodeSpaceHQ/caffeine-routine-galileo#readme",
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-chai-friendly": "^0.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"supertest": "^3.0.0",
"underscore": "^1.8.3"
}
}