-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.34 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "books-api",
"version": "0.2.0",
"description": "API to books",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "NODE_ENV=test mocha test/**/*.spec.js",
"test:coverage": "nyc npm test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"test:integration": "NODE_ENV=test mocha test/integration/**/*.spec.js",
"test:unit": "NODE_ENV=test mocha test/unit/**/*.spec.js",
"test:contracts": "NODE_ENV=test mocha test/contracts/**/*.spec.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"snyk:protect": "snyk protect",
"prepublish": "npm run snyk-protect && npm run snyk:protect",
"snyk-protect": "snyk protect"
},
"nyc": {
"functions": 80,
"lines": 80,
"check-coverage": true,
"reporter": [
"text",
"html",
"lcov"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaaomanooel/books-api.git"
},
"author": {
"name": "João Manoel Neto",
"email": "joaaomanooel@gmail.com",
"url": "https://github.com/joaaomanooel"
},
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"bugs": {
"email": "joaaomanooel@gmail.com",
"url": "https://github.com/joaaomanooel/books-api/issues"
},
"keywords": [
"node",
"books",
"sqlite",
"travis",
"express",
"sequelize",
"javascript"
],
"homepage": "https://github.com/joaaomanooel/books-api#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"joi": "^14.3.1",
"joi-assert": "^0.0.3",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"snyk": "^1.305.1",
"supertest": "^4.0.2",
"testdouble": "^3.13.1"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"http-status": "^1.4.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"readmeio": "^2.0.0",
"sequelize": "^5.21.6",
"sqlite3": "^4.1.1"
},
"snyk": true
}