-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.56 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
98
99
{
"name": "semantic-git-release-cli",
"version": "2.0.3",
"description": "A CLI for semantic git releases",
"main": "dest",
"bin": {
"semantic-git-release": "./lib/cli.js",
"sgr": "./lib/cli.js"
},
"scripts": {
"pretest": "npm run babel & node ./test/test-helpers/_setup.js",
"test": "nyc ava -s",
"posttest": "node ./test/test-helpers/_cleanup.js",
"babel": "babel src -d lib",
"prepare": "npm run babel",
"prepush": "npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"resetFixtures": "mv test/fixtures/repo-with-tags/.git test/fixtures/repo-with-tags/git && mv test/fixtures/repo-without-tags/.git test/fixtures/repo-without-tags/git && mv test/fixtures/repo-no-commits/.git test/fixtures/repo-no-commits/git"
},
"ava": {
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"nyc": {
"exclude": [
"test",
"dest",
"lib/tasks",
"lib/helpers/cleanNodeModules.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/aichbauer/node-semantic-git-release-cli.git"
},
"author": "Lukas Aichbauer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aichbauer/node-semantic-git-release-cli/issues"
},
"keywords": [
"semantic",
"git",
"release",
"cli",
"fast",
"enhance",
"workflow"
],
"homepage": "https://github.com/aichbauer/node-semantic-git-release-cli#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"ava": "^2.3.0",
"coveralls": "^3.0.6",
"cross-env": "^5.2.0",
"husky": "^0.13.4",
"lint-staged": "^9.2.3",
"nyc": "^14.1.1",
"prettier": "^1.18.2"
},
"dependencies": {
"chalk": "^2.0.1",
"count-git-tags": "^1.0.0",
"execa": "^0.6.3",
"fs-extra": "^3.0.1",
"get-git-remotes": "^1.0.1",
"git-commit-info": "^1.0.0",
"git-commit-range": "^1.0.1",
"git-needs-pull": "^1.0.2",
"has-yarn": "^1.0.0",
"inquirer": "^3.0.6",
"is-git-added": "^1.0.2",
"is-git-repository": "^1.1.1",
"listr": "^0.12.0",
"moment": "^2.18.1",
"prepend-file": "^1.3.1",
"semver": "^5.3.0",
"tagged-git-commits": "^1.0.0",
"update-notifier": "^2.1.0",
"yargs": "^15.1.0"
}
}