-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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
49
50
51
52
{
"name": "node-api-testavel",
"version": "1.0.0",
"description": "",
"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:contract": "NODE_ENV=test mocha --opts test/contracts/mocha.opts test/contracts/**/*.js",
"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",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasfevi/node-api-testavel.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucasfevi/node-api-testavel/issues"
},
"homepage": "https://github.com/lucasfevi/node-api-testavel#readme",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.16.0",
"express": "^4.14.0",
"http-status": "^1.0.1",
"jwt-simple": "^0.5.1",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"sequelize": "^3.30.1",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"joi": "^10.2.2",
"joi-assert": "0.0.3",
"mocha": "^3.2.0",
"supertest": "^2.0.1",
"testdouble": "^1.11.1"
}
}