-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.26 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.26 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@becode/cli",
"version": "0.10.3",
"description": "CLI Utils at BeCode. Useful for everyone at BeCode.",
"keywords": [
"cli",
"tools",
"shortcuts",
"docker-compose"
],
"homepage": "https://github.com/becodeorg/cli#readme",
"bugs": {
"url": "https://github.com/becodeorg/cli/issues"
},
"author": {
"name": "leny",
"url": "https://becode.org",
"email": "leny@becode.org"
},
"main": "./bin/index.js",
"bin": {
"becode": "./bin/index.js"
},
"files": [
"bin",
"data"
],
"scripts": {
"work": "npx babel src --watch --verbose --out-dir bin",
"build": "npx babel src --out-dir bin",
"prepare": "npx babel src --out-dir bin",
"lint": "npx eslint --fix --cache src",
"postinstall": "node -e \"try{require('./bin/post-install.js')}catch(e){}\""
},
"lint-staged": {
"*.js": [
"npx eslint --fix --cache"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/becodeorg/cli.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.0.0",
"commander": "^6.0.0",
"commander-completion": "^1.0.1",
"dayjs": "^1.8.26",
"enquirer": "^2.3.0",
"git-toplevel": "^1.1.1",
"got": "^11.1.3",
"graphql-request": "^2.0.0",
"json2yaml": "^1.1.0",
"koa": "^2.10.0",
"luxon": "^1.11.3",
"make-dir": "^3.0.0",
"murmur": "0.0.2",
"open": "^7.0.0",
"opn": "^6.0.0",
"ora": "^5.4.1",
"qs": "^6.9.0",
"terminal-image": "^1.0.0",
"update-notifier": "^4.0.0",
"user-home": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"eslint": "^7.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier": "^2.0.4"
}
}