-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 KB
/
package.json
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
{
"name": "vec",
"version": "1.0.0",
"description": "vClould Director Extension CLI",
"repository": {
"type": "git",
"url": "https://github.com/zenddignite/vcd-ext-cli"
},
"author": "Nikola Iliev",
"license": "MIT",
"scripts": {
"clean": "rimraf build && rimraf dist",
"tsc": "tsc",
"copy-metadata": "cpy package.dist.json dist --rename=package.json",
"build": "npm run clean && npm run tsc && ncp build/ dist/ && ncp src/templates dist/templates && npm run copy-metadata",
"build-ts": "tsc",
"watch-ts": "tsc -w"
},
"dependencies": {
"cli-spinner": "0.2.8",
"commander": "2.16.0",
"ejs": "2.6.1",
"ini": "1.3.5",
"inquirer": "6.0.0",
"request": "2.88.0",
"unzipper": "0.9.3"
},
"devDependencies": {
"@types/cli-spinner": "0.2.0",
"@types/ejs": "2.6.0",
"@types/ini": "1.3.29",
"@types/inquirer": "0.0.43",
"@types/node": "10.9.2",
"@types/request": "2.47.1",
"@types/unzipper": "0.9.0",
"cpy-cli": "2.0.0",
"ncp": "2.0.0",
"rimraf": "2.6.2",
"tslint": "5.11.0",
"typescript": "3.0.1"
}
}