-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 861 Bytes
/
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
{
"name": "SoilSensorAPI",
"version": "0.1.0",
"description": "A database and API for the Soil Sensor project.",
"main": "src/api.js",
"scripts": {
"start": "nodemon src/api.js",
"test": "mocha -w --reporter spec",
"testonce": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/jenfoxbot/SoilSensorAPI.git"
},
"author": "",
"license": "Apache v2",
"bugs": {
"url": "https://github.com/jenfoxbot/SoilSensorAPI/issues"
},
"homepage": "https://github.com/jenfoxbot/SoilSensorAPI",
"engines": {
"node": "0.10.x"
},
"dependencies": {
"body-parser": "^1.4.3",
"express": "^4.4.4",
"mongoose": "^5.7.8",
"nodemon": "^1.2.0"
},
"devDependencies": {
"async": "^0.9.0",
"expect.js": "^0.3.1",
"mocha": "^1.20.1",
"supertest": "^0.13.0"
}
}