-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.29 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
{
"name": "grank",
"version": "1.0.18",
"description": "Github Rank Cli",
"main": "lib/cli.js",
"bin": {
"grank": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && babel src -d lib --copy-files --ignore '**/*.spec.js' -s && npm run pack",
"pack": "pkg . --out-path packed",
"clean": "rimraf lib packed",
"test": "echo \"no test specified\"",
"prepublishOnly": "npm run build && echo '#!/usr/bin/env node' | cat - lib/cli.js > temp && mv temp lib/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cdoco/grank.git"
},
"keywords": [
"github",
"rank",
"cli"
],
"author": "ZiHang Gao",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdoco/grank/issues"
},
"homepage": "https://github.com/cdoco/grank#readme",
"dependencies": {
"async-to-gen": "^1.3.3",
"babel-register": "^6.26.0",
"cfonts": "^1.1.3",
"chalk": "^2.3.0",
"cli-table2": "^0.2.0",
"didyoumean": "^1.2.1",
"commander": "^2.11.0",
"date-fns": "^1.29.0",
"is-async-supported": "^1.2.0",
"update-notifier": "^2.3.0",
"axios": "^0.17.1",
"ora": "^1.3.0",
"p-map": "^1.2.0"
},
"pkg": {
"scripts": [
"lib/**/*.js",
"node_modules/blessed/lib/**/*.js"
],
"assets": "lib/data/fonts/*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"pkg": "^4.3.0-beta.4",
"prettier": "^1.8.2",
"rimraf": "^2.6.2"
}
}