-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@conventional-commits/parser",
"version": "0.4.1",
"description": "reference implementation of conventionalcommits.org spec",
"main": "index.js",
"files": [
"lib",
"index.d.ts",
"index.js"
],
"types": "index.d.ts",
"scripts": {
"test": "c8 mocha ./test/*.js",
"test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
"coverage": "c8 --check-coverage mocha --timeout=8000 ./test/*.js",
"posttest": "standard",
"fix": "standard --fix",
"inspect": "./scripts/inspect.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/conventional-commits/parser.git"
},
"keywords": [
"parser",
"conventional",
"commits"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/conventional-commits/parser/issues"
},
"homepage": "https://github.com/conventional-commits/parser#readme",
"devDependencies": {
"c8": "^7.3.5",
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"mocha": "^8.2.1",
"standard": "^16.0.3",
"unist-util-inspect": "^6.0.1",
"unist-util-source": "^3.0.0",
"unist-util-visit": "^2.0.3",
"yargs": "^16.2.0"
},
"dependencies": {
"unist-util-visit": "^2.0.3",
"unist-util-visit-parents": "^3.1.1"
}
}