-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
82 lines (82 loc) · 1.98 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
{
"name": "check-it-out",
"version": "3.0.0",
"description": "Easy git checkout CLI tool.",
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "index.js",
"scripts": {
"build": "babel src --extensions .js --out-dir dist --verbose",
"cz": "git cz",
"format": "prettier --write \"**/*.js\"",
"lint:fix": "eslint --config .eslintrc.json ./ --fix",
"lint": "eslint --config .eslintrc.json ./",
"precise-commits": "precise-commits",
"precommit": "npm run precise-commits",
"prepublishOnly": "npm run build",
"start": "node index.js",
"test": "npm run lint",
"watch": "babel src --extensions .js --out-dir dist --verbose --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwu910/check-it-out.git"
},
"keywords": [
"branch",
"checkout",
"cli",
"easy",
"git",
"git-branch",
"git-checkout",
"github",
"tool"
],
"bin": {
"checkit": "index.js",
"cio": "index.js"
},
"engines": {
"node": ">=6"
},
"author": "Joshua Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/jwu910/check-it-out/issues"
},
"homepage": "https://checkit.club",
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^2.3.1",
"configstore": "^3.1.2",
"strip-ansi": "^5.2.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^8.2.5",
"cz-conventional-changelog": "^2.1.0",
"danger": "^9.2.1",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.2",
"lodash": "^4.17.15",
"precise-commits": "^1.0.2",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}