-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 881 Bytes
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
{
"name": "clean-node-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --watch --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"keywords": [],
"author": "rodrigo manguinho",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"git-commit-msg-linter": "^5.0.8",
"husky": "^4.0.0-beta.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}