-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.69 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
{
"name": "go-cli",
"version": "1.2.0",
"description": "Create, install and use boilerplates with ease",
"main": "./lib",
"bin": {
"go": "bin/go.js"
},
"scripts": {
"ci": "npm run lint:ci && npm run unit:ci",
"coverage": "npm run unit; opn coverage/lcov-report/index.html",
"lint": "standard -v | snazzy",
"lint:ci": "standard",
"prepublishOnly": "npm run test",
"test": "npm run lint && npm run unit",
"unit": "jest --coverage",
"unit:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
"unit:watch": "jest --coverage --watchAll"
},
"engines": {
"node": ">=6.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gocli/go-cli.git"
},
"keywords": [
"boilerplate",
"automation",
"template",
"generator",
"scaffold",
"cli",
"go"
],
"author": "Stanislav Termosa <termosa.stanislav@gmail.com> (https://github.com/termosa)",
"license": "MIT",
"files": [
"bin",
"lib"
],
"bugs": {
"url": "https://github.com/gocli/go/issues"
},
"homepage": "https://github.com/gocli/go#readme",
"dependencies": {
"chalk": "2.3.1",
"go-loader-gist": "^0.1.0",
"go-loader-git": "^3.0.3",
"go-loader-github": "0.0.4",
"inquirer": "5.1.0",
"interpret": "1.1.0",
"liftoff": "2.5.0",
"minimist": "1.2.0",
"resolve-global": "0.1.0",
"which": "1.3.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"jest": "^22.4.2",
"opn-cli": "^3.1.0",
"snazzy": "^7.1.1",
"standard": "^11.0.0"
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"expect",
"jest",
"it"
]
}
}