-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.36 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
46
47
{
"name": "angular-build-info",
"version": "2.0.1",
"description": "🛠 A CLI to generate an easily importable `build.ts` file containing various details about the application build",
"main": "index.js",
"bin": {
"angular-build-info": "bin/index.js",
"build-info": "bin/index.js"
},
"scripts": {
"test": "build-info",
"dev": "rimraf dev && tsc",
"build": "rimraf dev && rimraf bin && tsc && terser-folder dev -o bin/ -e -x .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inexio/angular-build-info.git"
},
"keywords": [
"angular",
"angular2",
"build-info",
"build",
"cli",
"information"
],
"author": "Juri Adams <juri@adams.sh> (https://adams.sh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inexio/angular-build-info/issues"
},
"homepage": "https://github.com/inexio/angular-build-info#readme",
"dependencies": {
"prompts": "^2.3.2",
"signale": "^1.4.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^12.12.34",
"@types/prompts": "^2.0.5",
"@types/signale": "^1.4.0",
"@types/yargs": "^16.0.0",
"rimraf": "^3.0.2",
"terser-folder": "^2.0.0",
"typescript": "^3.8.3"
}
}