-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "plotterplatform",
"description": "An Aurelia client application.",
"version": "1.0.7",
"main": "main.js",
"repository": {
"type": "github",
"url": "https://github.com/plotter/platform"
},
"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"
},
"author": {
"name": "Mike Graham",
"email": "[email protected]",
"url": "http://www.technicalmedia.com/"
},
"license": "MIT",
"dependencies": {
"aurelia-animator-css": "^1.0.0-rc.1.0.0",
"aurelia-bootstrapper": "^1.0.0-rc.1.0.0",
"aurelia-fetch-client": "^1.0.0-rc.1.0.1",
"bluebird": "^3.4.1",
"bootstrap": "^3.3.6",
"font-awesome": "^4.6.3"
},
"peerDependencies": {},
"devDependencies": {
"aurelia-cli": "^0.17.0",
"aurelia-testing": "^1.0.0-beta.1.0.0",
"aurelia-tools": "^0.2.2",
"browser-sync": "^2.13.0",
"connect-history-api-fallback": "^1.2.0",
"electron-installer-windows": "^0.2.0",
"electron-packager": "^7.3.0",
"electron-prebuilt": "^1.3.1",
"event-stream": "^3.3.3",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-changed-in-place": "^2.0.3",
"gulp-less": "^3.1.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.13.6",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-typescript-preprocessor": "^0.2.1",
"minimatch": "^3.0.2",
"through2": "^2.0.1",
"tslint": "^3.11.0",
"typescript": ">=1.9.0-dev || ^2.0.0",
"typings": "^1.3.0",
"uglify-js": "^2.6.3",
"vinyl-fs": "^2.4.3"
}
}