-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.45 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "electron-aurelia-example",
"productName": "ElectronAureliaExample",
"version": "0.0.1",
"description": "An example electron app using Aurelia",
"license": "MIT",
"main": "index.js",
"repository": {
"url": "https://github.com/jimschubert/electron-aurelia-example"
},
"author": {
"name": "Jim Schubert",
"email": "[email protected]",
"url": "ipreferjim.com"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"start": "electron .",
"debug": "electron --debug-brk=5858 .",
"postinstall": "jspm install",
"test": "npm start -- \"--test\""
},
"keywords": [
"electron-aurelia-example",
"aurelia",
"es6"
],
"devDependencies": {
"async": "^1.2.0",
"babel": "^5.5.8",
"babel-eslint": "^3.1.13",
"chai": "^3.0.0",
"conventional-changelog": "0.0.17",
"del": "^1.2.0",
"electron-packager": "^4.1.2",
"electron-prebuilt": "^0.27.3",
"fs-plus": "^2.8.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-bump": "^0.3.1",
"gulp-changed": "^1.2.1",
"gulp-debug": "^2.0.1",
"gulp-eslint": "^0.13.2",
"gulp-if": "^1.2.5",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.3.0",
"gulp-task-listing": "^1.0.0",
"gulp-util": "^3.0.5",
"gulp-webdriver": "jimschubert/gulp-webdriver",
"jspm": "^0.15.7",
"longjohn": "^0.2.4",
"object.assign": "^1.0.3",
"require-dir": "^0.3.0",
"rimraf": "^2.3.4",
"run-sequence": "^1.1.0",
"vinyl-paths": "^1.0.0",
"webdriverio": "^2.4.5"
},
"jspm": {
"directories": {
"baseURL": "client"
},
"dependencies": {
"aurelia-animator-css": "github:aurelia/animator-css@^0.2.0",
"aurelia-bootstrapper": "github:aurelia/bootstrapper@^0.12.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@^0.7.1",
"aurelia-framework": "github:aurelia/framework@^0.11.0",
"aurelia-http-client": "github:aurelia/http-client@^0.8.1",
"aurelia-router": "github:aurelia/router@^0.8.1",
"bootstrap": "github:twbs/bootstrap@^3.3.4",
"css": "github:systemjs/plugin-css@^0.1.11",
"font-awesome": "npm:font-awesome@^4.3.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
},
"dependencies": {
"crypto": "0.0.3",
"jasmine": "^2.3.1",
"walkdir": "0.0.9",
"yargs": "^3.10.0"
}
}