forked from alan-agius4/speedy-commit-msg-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.75 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
{
"name": "@speedy/commit-msg-hook",
"version": "1.9.0",
"description": "GIT commit-msg validator hook",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alan-agius4/speedy-commit-msg-hook.git"
},
"keywords": [
"node",
"git",
"commit",
"message",
"hook",
"validator",
"commit-msg"
],
"author": "Alan Agius",
"license": "ISC",
"bugs": {
"url": "https://github.com/alan-agius4/speedy-commit-msg-hook/issues"
},
"homepage": "https://github.com/alan-agius4/speedy-commit-msg-hook#readme",
"scripts": {
"prebuild": "npm run lint & npm run clean",
"build": "tsc -p tsconfig.build.json",
"test": "npm run clean && tsc -p tsconfig.test.json && jasmine JASMINE_CONFIG_PATH=jasmine.json",
"clean": "rimraf ./dist & rimraf ./test",
"lint": "tslint -c tslint.json ./src/**/*.ts --format stylish",
"watch": "npm run clean && tsc -p tsconfig.build.json -w",
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s",
"preversion": "npm test",
"version": "npm run build && npm run changelog",
"postversion": "git commit --all -m \"chore(all): update for release\" && git push && git push --tags",
"release": "ts-node ./tools/modify-package && npm publish && git checkout ."
},
"dependencies": {
"@speedy/json-extends": "^1.2.0",
"@speedy/node-core": "^1.5.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/jasmine": "^3.0.0",
"@types/lodash": "^4.14.57",
"@types/node": "^10.0.0",
"conventional-changelog-cli": "^2.0.0",
"jasmine": "^3.1.0",
"rimraf": "^2.6.1",
"ts-node": "^8.0.0",
"tslint": "^5.0.0",
"typescript": "~3.5.0"
},
"typings": "dist/index.d.ts"
}