-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "@orbital/cli",
"version": "1.0.0-alpha.2",
"description": "A simple CLI to start your Orbital projects",
"bin": {
"boat": "./bin/boat"
},
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getcanal/boat-cli.git"
},
"keywords": [
"boat",
"canal",
"cli",
"node"
],
"author": "Wilson Hobbs",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbital-js/orbital-cli/issues"
},
"homepage": "https://github.com/orbital-js/orbital-cli#readme",
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"git": "^0.1.5",
"inquirer": "^3.0.6",
"path-exists": "^3.0.0",
"shelljs": "^0.7.7",
"typescript": "^2.2.2"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/commander": "^2.3.31",
"@types/git": "0.0.18",
"@types/inquirer": "0.0.32",
"@types/path-exists": "^1.0.29",
"@types/shelljs": "^0.7.0"
}
}