-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.37 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
{
"name": "ghlabels",
"version": "0.2.0",
"description": "A manager for GitHub issue labels",
"keywords": [
"github",
"issue",
"issues",
"label",
"labels",
"manager",
"tool"
],
"homepage": "https://github.com/seegno/github-labels",
"bugs": {
"url": "https://github.com/seegno/github-labels/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Nuno Rafael Rocha",
"email": "[email protected]",
"url": "https://seegno.com"
},
"main": "./dist/index.js",
"bin": {
"ghlabels": "./dist/bin/labels.js"
},
"repository": {
"type": "git",
"url": "https://github.com/seegno/github-labels.git"
},
"scripts": {
"build": "rm -rf dist/* && babel src --out-dir dist",
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"cover": "jest --coverage --forceExit",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src test",
"lint-staged": "lint-staged",
"test": "jest --forceExit",
"test-watch": "jest --watch --notify --onlyChanged",
"version": "npm run build && npm run changelog --future-release=$npm_package_version && git add -A CHANGELOG.md dist"
},
"pre-commit": [
"lint-staged"
],
"dependencies": {
"@octokit/rest": "^15.9.2",
"bluebird": "^3.3.1",
"fs": "^0.0.2",
"inquirer": "^6.0.0",
"lodash": "4.17.10",
"prettyjson": "^1.1.3",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-jest": "^23.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-es2015-node": "^6.1.1",
"babel-preset-stage-1": "^6.24.1",
"coveralls": "^3.0.1",
"eslint": "5.0.1",
"eslint-config-seegno": "10.0.0",
"faker": "^4.1.0",
"jest": "^23.2.0",
"lint-staged": "7.2.0",
"pre-commit": "^1.2.2",
"standard-http-error": "^2.0.0"
},
"engines": {
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
},
"jest": {
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"lcov",
"text"
],
"testEnvironment": "node",
"testRegex": "(/test/.*\\.test.js)$"
},
"lint-staged": {
"{src,test}/**/*.js": [
"eslint",
"jest --findRelatedTests --forceExit"
]
}
}