This repository has been archived by the owner on Oct 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
72 lines (72 loc) · 2.17 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
{
"name": "electron-compile",
"version": "6.4.4",
"description": "Electron supporting package to compile JS and CSS in Electron applications",
"scripts": {
"doc": "esdoc -c ./esdoc.json",
"compile": "cross-env NODE_ENV='production' 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",
"test-cov": "cross-env NODE_ENV='test' istanbul cover ./node_modules/mocha/bin/_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",
"types": "types/index.d.ts",
"engines": {
"node": ">= 5.0"
},
"dependencies": {
"@paulcbetts/mime-types": "^2.1.10",
"@types/node": "^7.0.12",
"btoa": "^1.1.2",
"debug": "^2.5.1",
"lru-cache": "^4.0.1",
"mkdirp": "^0.5.1",
"pify": "^2.3.0",
"rimraf": "^2.5.4",
"rxjs": "^5.1.1",
"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-istanbul": "^4.0.0",
"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",
"cross-env": "^3.2.4",
"electron-compilers": "^5.8.0",
"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",
"istanbul": "^0.4.5",
"mocha": "^3.0.2"
}
}