-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 855 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 855 Bytes
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
{
"name": "@orbital/cli",
"version": "1.0.0",
"description": "The CLI companion to the Orbital Framework",
"main": "./dist/main.js",
"bin": {
"nb": "./dist/main.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"demo": "npm run build && npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbital-js/starter.git"
},
"author": "Wilson Hobbs",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbital-js/starter/issues"
},
"homepage": "https://github.com/orbital-js/starter#readme",
"dependencies": {
"@orbital/core": "^1.0.0-alpha.28",
"chalk": "^2.4.1",
"shelljs": "^0.8.2"
},
"devDependencies": {
"@types/node": "^10.3.6",
"@types/nodegit": "^0.22.3",
"@types/shelljs": "^0.8.0",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
}
}