-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.79 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.79 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
48
49
50
51
{
"name": "plotterplatform",
"version": "1.0.7",
"description": "A starter kit for building a standard navigation-style app with Aurelia.",
"keywords": [
"aurelia",
"navigation",
"skeleton"
],
"homepage": "http://plotter.github.io",
"bugs": {
"url": "https://github.com/plotter/platform2/issues"
},
"scripts": {
"clean": "rimraf dist",
"start": "electron .",
"exe32": "electron-packager . plotterplatform --platform win32 --arch ia32 --out dist/ --ignore \"(dist|node_modules)\"",
"exe64": "electron-packager . plotterplatform --platform win32 --arch x64 --out dist/ --ignore \"(dist|node_modules)\"",
"set32": "electron-installer-windows --src dist/plotterplatform-win32-ia32/ --dest dist/installers/ia32/",
"set64": "electron-installer-windows --src dist/plotterplatform-win32-x64/ --dest dist/installers/x64/",
"build": "npm run clean && npm run exe32 && npm run set32",
"build-all": "npm run clean && npm run exe32 && npm run set32 && npm run exe64 && npm run set64"
},
"license": "MIT",
"author": "Mike Graham <mgraham@technicalmedia.com> (http://cmichaelgraham.io)",
"main": "main.js",
"repository": {
"type": "git",
"url": "http://github.com/plotter/platform2"
},
"devDependencies": {
"browser-sync": "^2.13.0",
"del": "^1.1.0",
"electron-installer-windows": "^0.2.0",
"electron-packager": "^7.3.0",
"electron-prebuilt": "^1.3.1",
"gulp": "^3.8.10",
"gulp-cached": "^1.1.0",
"gulp-changed": "^1.3.2",
"gulp-less": "^3.1.0",
"gulp-rename": "^1.2.2",
"gulp-requirejs-optimize": "^1.2.0",
"gulp-typescript": "*",
"merge2": "*",
"path": "^0.12.7",
"run-sequence": "^1.0.2",
"text": "github:requirejs/text",
"tslint": "^3.11.0",
"typescript": ">=1.9.0-dev || ^2.0.0"
}
}