-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 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
51
{
"name": "package-lock-sanitizer",
"version": "0.0.0-semantically-released",
"description": "A script that resets the resolves registry URLs in package lock to the official NPM registry.",
"main": "src/index.js",
"bin": {
"package-lock-sanitizer": "./bin/run"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release",
"package-lock-sanitizer": "node ./bin/run"
},
"author": "Joacim Magnusson",
"license": "Apache-2.0",
"files": [
"/bin",
"/src"
],
"husky": {
"hooks": {
"commit-msg": "commitlint --edit",
"pre-commit": "npm run package-lock-sanitizer && git add package-lock.json"
}
},
"dependencies": {
"@oclif/command": "^1.5.11",
"@oclif/config": "^1.12.8",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-help": "^6.0.3",
"fs": "0.0.2",
"replace-in-file": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"cz-conventional-changelog": "^3.0.0",
"husky": "^9.0.6",
"semantic-release": "^22.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}