-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.01 KB
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": "ng-programmatic",
"version": "1.0.14",
"description": "Programmatic interface for configuring and running Angular CLI commands.",
"keywords": [
"angular-cli",
"programmatic",
"fluent",
"taskrunner",
"gulp"
],
"main": "dist/index.js",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
"test": "mocha",
"coverage": "nyc mocha"
},
"author": "Toby Bessant",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cross-spawn": "^6.0.2",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.0",
"tslint": "^6.1.3",
"typemoq": "^2.1.0",
"typescript": "^4.1.2"
},
"repository": {
"url": "https://github.com/tobybessant/ng-programmatic"
},
"types": "dist/index.d.ts",
"dependencies": {
"cross-spawn": "^7.0.3"
}
}