-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.11 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
48
49
{
"name": "ng-cli-electron",
"version": "6.0.0",
"description": "Build an electron project scaffolded in @angular/cli",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint",
"build": "rimraf dist && tsc --p .",
"lint": "tslint --project .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/ng-cli-angular.git"
},
"keywords": [
"electron",
"angular",
"cli",
"webpack"
],
"author": "Dolan Miu",
"license": "MIT",
"bin": {
"ng-cli-electron": "dist/cli.js",
"nge": "dist/cli.js"
},
"dependencies": {
"@types/fs-extra": "^4.0.0",
"@types/lodash": "^4.14.77",
"@types/node": "^8.0.17",
"@types/rimraf": "0.0.28",
"@types/yargs": "^8.0.3",
"fs-extra": "^4.0.1",
"lodash": "^4.17.4",
"rimraf": "^2.6.1",
"shelljs": "^0.7.8",
"typescript": "^2.4.2",
"yargs": "^9.0.1"
},
"devDependencies": {
"tslint": "^5.5.0"
},
"peerDependencies": {
"@angular/cli": "^1.0.0",
"electron": "^1.6.11",
"awesome-typescript-loader": "^3.2.2"
}
}