-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "clean-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --silent --colors --noStackTrace --passWithNoTests",
"test:unit": "npm test -- --watch jest-unit-config.js",
"test:integration": "npm test -- --watch jest-integrationconfig.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"fix": "standard --fix",
"prepare": "husky install"
},
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/trickaugusto/clean-node-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/trickaugusto/clean-node-api/issues"
},
"homepage": "https://github.com/trickaugusto/clean-node-api#readme",
"devDependencies": {
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"standard": "^17.1.0"
},
"dependencies": {
"mongoose": "^8.0.1",
"validator": "^13.11.0"
}
}