-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "standard-version-updater-yaml",
"version": "1.0.3",
"description": "A YAML updater for standard-version.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"commit": "git cz",
"lint": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint --ext .js --ignore-path .gitignore .",
"prettier": "prettier '**/*.js' --ignore-path .gitignore",
"prerelease": "npm run lint",
"release": "git add index.js && standard-version -a",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coldfrontlabs/standard-version-updater-yaml.git"
},
"keywords": [
"standard-version",
"updater",
"yaml"
],
"author": "Coldfront Labs Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/coldfrontlabs/standard-version-updater-yaml/issues"
},
"homepage": "https://github.com/coldfrontlabs/standard-version-updater-yaml#readme",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^16.0.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.0.0",
"standard-version": "^9.0.0"
},
"peerDependencies": {
"standard-version": "^9.0.0"
},
"dependencies": {
"yaml": "^2.0.0"
}
}