-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.04 KB
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
{
"name": "github-searcher-cli",
"version": "0.0.0-development",
"description": "GitHub Searcher from the command line",
"main": "index.js",
"bin": {
"ghs": "build/executables/ghs.js"
},
"scripts": {
"codecov": "codecov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"compile": "babel -d build/ src/ --ignore node_modules,*.test.js",
"lint": "eslint --ext .js .",
"test": "jest --coverage",
"prepublishOnly": "npm run compile",
"semantic-commit": "commit",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/jaebradley/github-searcher-cli.git"
},
"keywords": [
"github",
"cli"
],
"author": "jae.b.bradley@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaebradley/github-searcher-cli/issues"
},
"homepage": "https://github.com/jaebradley/github-searcher-cli#readme",
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"FragmentStyler.test.js"
]
},
"devDependencies": {
"@commitlint/cli": "^6.0.1",
"@commitlint/config-angular": "^6.0.2",
"@commitlint/prompt": "^6.0.1",
"@commitlint/prompt-cli": "^6.0.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"jest": "^22.0.5",
"semantic-release": "^15.0.0"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"chalk": "^2.3.0",
"colors": "^1.1.2",
"commander": "^2.12.1",
"fuzzy": "^0.1.3",
"github": "^13.1.0",
"inquirer": "^5.0.0",
"inquirer-autocomplete-prompt": "^0.12.0",
"keytar": "^4.0.5",
"moment-timezone": "^0.5.14",
"open": "0.0.5",
"textstyler": "^1.1.1"
}
}