-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.12 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": "node-test-parser",
"version": "2.2.2",
"description": "Node.js test runner report stream parser",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "npm run test:e2e && npm run test:typescript",
"test:e2e": "./test/e2e/compare.sh",
"test:typescript": "tsd",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/node-test-parser.git"
},
"keywords": [
"test",
"report"
],
"author": {
"name": "Romulo Vitoi",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nearform/node-test-parser/issues"
},
"homepage": "https://github.com/nearform/node-test-parser#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"tsd": "^0.29.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
}
}