-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "home-automation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-watch": "nodemon index.js --exec babel-node --",
"start-db": "sudo service mongod start",
"test": "nyc mocha --recursive --exit",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test"
},
"keywords": [
"home-automation",
"heroku"
],
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"express": "^4.17.0",
"lint": "^1.1.2",
"mongoose": "^5.5.11"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.5.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"grunt": "^1.0.4",
"grunt-contrib-jshint": "^2.1.0",
"grunt-coveralls": "^2.0.0",
"jest": "^24.8.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"mockgoose": "^8.0.2",
"nodemon": "^1.19.0",
"nyc": "^14.1.1",
"request": "^2.88.0",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"engines": {
"node": "10.x"
}
}