forked from waldemarnt/testable-nodejs-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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
{
"name": "books-api",
"version": "1.0.0",
"description": "Simple books API with all tests included",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"test": "npm run lint && npm run test-unit && npm run test-integration && npm run test-contract",
"test-integration": "NODE_ENV=test mocha --opts test/integration/mocha.opts test/integration/**/*.js",
"test-unit": "NODE_ENV=test mocha --opts test/unit/mocha.opts test/unit/**/*.js",
"test-contract": "NODE_ENV=test mocha --opts test/contract/mocha.opts test/contract/contracts/*.js",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"author": "Waldemar Neto <[email protected]>",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.3.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.0",
"eslint-plugin-standard": "^2.0.0",
"joi": "^9.0.4",
"joi-assert": "0.0.3",
"mocha": "^2.5.3",
"nodemon": "^1.10.2",
"supertest": "^1.2.0",
"testdouble": "^1.6.0"
},
"dependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.9.0",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"http-status": "^0.2.3",
"jwt-simple": "^0.5.0",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"sequelize": "^3.23.6",
"sqlite3": "^3.1.4"
}
}