forked from angular/angular-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "@angular2/electron",
"version": "1.0.0",
"description": "Electron Platform for Angular2",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"typings-install": "typings install",
"setup": "npm install --no-optional && npm run typings-install",
"setup-demo": "npm install --no-optional [email protected] es6-promise@^3.1.2 [email protected] [email protected] [email protected] zone.js@^0.6.6",
"build": "npm run clean && tsc",
"build_demo": "tsc typings/browser.d.ts demo/main.ts demo/app_ui.ts --module commonjs -t es5 --experimentalDecorators --emitDecoratorMetadata",
"test": "echo Not supported yet",
"demo": "npm run build && npm run build_demo && electron ./demo",
"start": "npm run demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angular/angular-electron.git"
},
"keywords": [
"Angular2",
"Electron"
],
"author": "Rob Wormald <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/angular-electron/issues"
},
"homepage": "https://github.com/angular/angular-electron#readme",
"devDependencies": {
"electron-prebuilt": "^0.37.2",
"typescript": "^1.8.9",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"angular2": "2.0.0-beta.12"
},
"dependencies": {
"parse5": "^1.5.1"
}
}