-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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
43
44
45
{
"name": "angular-spec-generator",
"version": "1.1.0",
"description": "generate exist angular file spec by cli.",
"author": "AlanZou",
"main": " ./index.js",
"bin": {
"angular-spec-generator": "./index.js"
},
"scripts": {
"delete": "rimraf dist",
"clean": "rimraf package-lock.json node_modules",
"cleanAndUpdate": "ncu -a && npm run clean && ncu -d -a && npm install",
"build": " npm run build-ts && npm run tslint",
"build:prod": "tsc -p tsconfig.prod.json --removeComments",
"build-ts": "tsc --removeComments",
"watch-ts": "tsc --removeComments -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"minify": "alang g uglify angular-spec-generator",
"addenv": "alang h addenv angular-spec-generator/index.js",
"move": "alang h move",
"prebuild:deploy": "npm run build:prod && npm run addenv && npm run move",
"build:deploy": "npm run minify",
"deploy": "cd angular-spec-generator && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/ZouYouShun/angular-spec-generator"
},
"homepage": "https://github.com/ZouYouShun/angular-spec-generator",
"bugs": {
"url": "https://github.com/ZouYouShun/angular-spec-generator/issues"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"clear": "0.1.0",
"string-template": "^1.0.0"
},
"devDependencies": {
"@types/node": "^11.10.4",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}