-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "release-automation",
"version": "0.7.0",
"description": "An opinionated CLI for release automation",
"main": "bin/index.js",
"bin": {
"release-automation": "./bin/index.js"
},
"files": [
"lib/**/*",
"bin/**/*"
],
"engines": {
"node": ">=9.11.2"
},
"scripts": {
"clean": "rm -rf ./lib",
"prebuild": "npm run clean",
"build": "tsc",
"start": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json --fix",
"prepublish": "npm run tslint && npm run build",
"precommit": "./scripts/pre-commit-check.sh && pretty-quick --staged && npm run tslint",
"format": "prettier --write 'src/**/*.{js,md,ts,json}'"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"keywords": [
"github",
"release",
"release-automation",
"semver"
],
"author": "Evans Owino",
"homepage": "https://github.com/eowino/release-automation",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/inquirer": "0.0.43",
"@types/node": "^10.12.24",
"@types/semver": "^5.5.0",
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"axios": "^0.19.0",
"chalk": "^2.4.2",
"inquirer": "^6.2.2",
"semver": "^5.6.0"
}
}