-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.65 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "standard-commit",
"version": "4.3.0",
"description": "conventional commit",
"author": {
"name": "Sebastien Tasson",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stasson/standard-commit.git"
},
"bugs": {
"url": "https://github.com/stasson/standard-commit/issues"
},
"keywords": [
"commit",
"conventional",
"conventional-changelog",
"standard-version",
"commitizen"
],
"main": "index.js",
"files": [
"bin",
"dist"
],
"bin": {
"standard-commit": "bin/commit.js",
"standard-commithook": "bin/commithook.js",
"standard-commitlint": "bin/commitlint.js"
},
"scripts": {
"start": "ts-node src/cli/commit.ts",
"tdd": "jest --runInBand --watch",
"format": "prettier --write src/**/* test/**",
"test": "run-s test:*",
"test:unit": "jest --runInBand",
"test:lint": "cross-env NODE_ENV=production tslint src/**/*.ts -t verbose",
"build": "run-s build:*",
"build:clean": "rimraf dist",
"build:lib": "tsc -p tsconfig.dist.json",
"prepublishOnly": "run-s build:*",
"release": "run-s release:*",
"release:checks": "run-s test:*",
"release:version": "standard-version",
"release:publish": "git push --follow-tags && npm publish",
"prepare": "husky install .githooks"
},
"gitHooks": {
"commit-msg": "ts-node src/cli/commithook.ts"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/meow": "^5.0.0",
"@types/node": "^14",
"@types/update-notifier": "^5.0.0",
"cross-env": "^7.0.3",
"husky": "^8.0.0",
"jest": "^28.1.1",
"mock-stdin": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"standard-version": "^9.1.1",
"ts-jest": "^28.0.5",
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/format": "^12.0.1",
"@commitlint/lint": "^12.0.1",
"@commitlint/load": "^12.0.1",
"@commitlint/read": "^12.0.1",
"@commitlint/rules": "^12.0.1",
"ansi-colors": "^4.1.1",
"conventional-changelog-conventionalcommits": "^4.3.1",
"cosmiconfig": "^7.0.0",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"import-local": "^3.0.2",
"linewrap": "^0.2.1",
"loud-rejection": "^2.2.0",
"meow": "^9.0.0",
"read-pkg-up": "^7.0.1",
"write-pkg": "^4.0.0"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/stasson/standard-commit#readme"
}