-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 849 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
{
"name": "xng-angular-cli",
"version": "1.0.0-alpha8",
"description": "CLI to orchestrate CrossEngager's workflow",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"clean": "./scripts/clean.js",
"copy:blueprints": "./scripts/copy-blueprints.js",
"build": "npm run clean && tsc -p src && npm run copy:blueprints",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"xng": "./bin/xng"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/fs-extra": "^5.0.4",
"chalk": "^2.1.0",
"change-case": "^3.0.1",
"fs-extra": "^7.0.0",
"inquirer": "^2.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/inquirer": "^0.0.32",
"@types/node": "^0.0.2",
"del": "^2.2.2",
"ncp": "^2.0.0",
"typescript": "^2.1.4"
}
}