-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.53 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
44
45
46
47
48
{
"name": "vamosjuntas-api",
"version": "1.0.0",
"description": "This is a project to have API for VamosJuntas",
"engines": {
"node": "5.11.1"
},
"main": "index.js",
"scripts": {
"start": "node ./bin/www | bunyan -o short",
"unit-test": "NODE_ENV=test ./node_modules/mocha/bin/mocha 'test/unit/**/*_spec.js' --compilers js:babel-core/register --require test/unit/index.js",
"integration-test": "NODE_ENV=test ./node_modules/mocha/bin/mocha 'test/integration/**/*_spec.js' --compilers js:babel-core/register --require test/integration/index.js",
"lint": "node ./node_modules/eslint/bin/eslint.js **/*.js",
"test": "npm run lint && npm run unit-test && npm run integration-test"
},
"repository": {
"type": "git",
"url": "https://github.com/VamosJuntas/vamosjuntas-api.git"
},
"author": "vamosJuntas Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/VamosJuntas/vamosjuntas-api/issues"
},
"homepage": "https://github.com/VamosJuntas/vamosjuntas-api",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.13.1",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0"
},
"dependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"bluebird": "^3.4.1",
"cors": "^2.8.1",
"http-status-codes": "^1.0.6",
"jsonschema": "^1.1.0",
"lodash": "^4.13.1",
"moment": "^2.14.1",
"mongoose": "^4.5.3",
"restify": "^4.1.1"
}
}