forked from electron-userland/electron-compile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "electron-compile",
"version": "4.0.2",
"description": "Electron supporting package to compile JS and CSS in Electron applications",
"scripts": {
"doc": "esdoc -c ./esdoc.json",
"compile": "git clean -xdf lib && babel -d lib/ src",
"prepublish": "npm run compile",
"start": "npm run compile && electron ./test-dist/electron-smoke-test.js",
"test": "mocha --compilers js:babel-register test/*.js"
},
"bin": {
"electron-compile": "lib/cli.js",
"electron-packager-compile": "lib/packager-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/paulcbetts/electron-compile"
},
"keywords": [
"electron"
],
"author": "Paul Betts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulcbetts/electron-compile/issues"
},
"homepage": "https://github.com/paulcbetts/electron-compile",
"main": "lib/index.js",
"engines": {
"node": ">= 5.0"
},
"dependencies": {
"@paulcbetts/mime-types": "^2.1.10",
"btoa": "^1.1.2",
"debug-electron": "^0.0.2",
"lru-cache": "^4.0.1",
"mkdirp": "^0.5.1",
"pify": "^2.3.0",
"rimraf": "^2.5.4",
"spawn-rx": "^2.0.3",
"yargs": "^4.8.1"
},
"devDependencies": {
"asar": "^0.12.1",
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2016-node5": "^1.1.2",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"cheerio": "^0.20.0",
"electron-compilers": "^4.0.1",
"electron-packager": "^7.5.1",
"electron-prebuilt": "^1.3.3",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "0.0.3",
"esdoc-plugin-async-to-sync": "^0.5.0",
"eslint": "^3.3.0",
"mocha": "^3.0.2"
}
}