-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "vamosJuntasAPI",
"version": "1.0.0",
"description": "This is a project to have API for VamosJuntas",
"engines": {
"node": "4.3.1"
},
"main": "index.js",
"scripts": {
"pretest": "node ./tests/test_setup.js",
"unit-test": "jasmine-node --verbose tests/unit",
"integration-test": "NODE_ENV=test node ./tests/integration/run_tests.js",
"test": "npm run unit-test",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/VamosJuntas/back-end.git"
},
"author": "vamosJuntas Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/VamosJuntas/back-end/issues"
},
"homepage": "https://github.com/VamosJuntas/back-end",
"dependencies": {
"bluebird": "^3.4.0",
"chai-as-promised": "^5.3.0",
"is-numeric": "0.0.5",
"jsonschema": "^1.1.0",
"mockgoose": "^6.0.3",
"mongodb": "^2.1.14",
"mongoose": "^4.4.5",
"restify": "^4.0.4"
},
"devDependencies": {
"frisby": "^0.8.5",
"jasmine-node": "^1.14.5",
"q": "^1.4.1"
}
}