-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.15 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
{
"name": "hyron-cli",
"version": "1.2.0",
"description": "Create Hyron app with no build configuration",
"author": "Ekene Izukanne <ekeneizukanne@gmail.com>",
"homepage": "https://github.com/spatocode/hyron-cli#README",
"repository": {
"type": "git",
"url": "git+https://github.com/spatocode/hyron-cli.git"
},
"bugs": {
"url": "https://github.com/spatocode/hyron-cli/issues"
},
"license": "MIT",
"keywords": [
"hyron",
"framework",
"plugin",
"app",
"api",
"web",
"CLI"
],
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.19.0",
"envinfo": "^6.0.1",
"fs-extra": "^7.0.1"
},
"main": "bin/index.js",
"preferGlobal": true,
"bin": {
"hyron": "./bin/hyron-cli"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"tmp": "0.0.33"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"lint": "eslint .",
"test": "mocha"
}
}