-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
{
"name": "lcov-total",
"version": "2.1.1",
"description": "Parsing lcov.info and returning total of the summary intended to use inside CI to exit if threshold not reach",
"bin": "bin/cmd.js",
"export": "src/index.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=test ava",
"prepare": "node prepare.cjs || echo 'Skipping prepare'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonecorsi/lcov-total.git"
},
"author": "Simone Corsi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonecorsi/lcov-total/issues"
},
"homepage": "https://github.com/simonecorsi/lcov-total#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"nodejs",
"npm",
"module",
"javascript",
"lcov",
"parser",
"total",
"coverage",
"total coverage",
"test coverage",
"nyc",
"cli",
"command",
"util",
"tdd",
"testing",
"test"
],
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@saithodev/semantic-release-backmerge": "^3.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^11.0.4",
"ava": "^6.1.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.5",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.0.0",
"semantic-release": "^24.1.2"
},
"volta": {
"node": "16.13.2"
}
}