-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.02 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
{
"name": "node-publisher",
"description": "A configurable release automation tool inspired by create-react-app and Travis CI.",
"author": "Attila Večerek <avecerek@zendesk.com>",
"homepage": "https://github.com/zendesk/node-publisher#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zendesk/node-publisher.git"
},
"bugs": {
"url": "https://github.com/zendesk/node-publisher/issues"
},
"version": "3.1.0",
"main": "src/index.js",
"bin": "./bin/node-publisher",
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint ./**/*.js",
"lint-staged": "lint-staged",
"release": "./bin/node-publisher release",
"test": "jest",
"travis": "yarn lint && yarn test"
},
"dependencies": {
"check-node-version": "3.2.0",
"commander": "2.15.1",
"inquirer": "6.5.0",
"js-yaml": "3.13.1",
"offline-github-changelog": "3.0.2",
"semver": "6.2.0"
},
"devDependencies": {
"babel-eslint": "10.0.2",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "24.9.0",
"lint-staged": "^9.0.0",
"pre-commit": "1.2.2",
"prettier": "1.18.2",
"prettier-package-json": "2.0.1"
},
"keywords": [
"lerna",
"npm",
"release-management",
"yarn"
],
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "https://github.com/zendesk/node-publisher/blob/master/LICENSE"
}
],
"lint-staged": {
"*.js": [
"eslint",
"prettier --single-quote --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"packageManager": "yarn@1.22.21",
"pre-commit": "lint-staged"
}