-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
82 lines (82 loc) · 2.21 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
{
"name": "electron-angular-boilerplate",
"version": "1.5.0",
"description": "A basic electron app using AngularJS and Skeleton CSS with ES6 support",
"engines": {
"node": "4.2.x"
},
"main": "main.js",
"scripts": {
"start": "gulp && electron .",
"postinstall": "./node_modules/bower/bin/bower install && ./node_modules/jspm/jspm.js install",
"debug": "node-inspector && electron --debug=5858 && ",
"test": "./node_modules/jest-cli/bin/jest.js --verbose && ./node_modules/karma/bin/karma start",
"test-angularjs": "karma start --auto-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/Stephn-R/Electron-Boilerplate.git"
},
"keywords": [
"electron",
"angular",
"boilerplate",
"desktop",
"applications",
"web"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stephn-R/Electron-Boilerplate/issues"
},
"homepage": "https://github.com/Stephn-R/Electron-Boilerplate",
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.14.0",
"babel-jest": "15.0.0",
"bower": "1.7.9",
"del": "2.2.2",
"electron-packager": "8.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "3.1.1",
"gulp-clean": "^0.3.2",
"gulp-istanbul": "^1.1.1",
"gulp-load-plugins": "^1.3.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"jest-cli": "15.1.1",
"jspm": "0.16.45",
"karma": "1.3.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"lodash": "^4.15.0",
"phantomjs": "^2.1.7",
"wiredep": "4.0.0"
},
"dependencies": {
"jquery": "^3.1.0"
},
"jspm": {
"dependencies": {},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
},
"jest": {
"collectCoverage": true,
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathIgnorePatterns": [
"__tests__/app/",
"/node_modules/"
]
}
}