forked from electron/windows-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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
{
"name": "@gpmdp/electron-winstaller",
"version": "1.1.0",
"description": "Module to generate Windows installers for Electron apps",
"main": "./lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/electronjs/windows-installer"
},
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run test && npm run compile",
"postinstall": "npm run compile && node lib/fetch-vendor.js",
"lint": "eslint src & eslint spec",
"pretest": "npm run compile && node lib/fetch-vendor.js",
"test": "npm run lint && ava",
"tdd": "ava --watch"
},
"dependencies": {
"asar": "^0.11.0",
"bluebird": "^3.3.4",
"debug": "^2.2.0",
"follow-redirects": "^0.2.0",
"fs-extra": "^0.26.7",
"lodash.template": "^4.2.2",
"node-fetch": "^1.6.0",
"temp": "^0.8.3",
"unzip": "^0.1.11"
},
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-async-to-module-method": "^6.7.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015-node4": "^2.0.3",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^2.4.0"
},
"engines": {
"node": ">=0.4.0"
},
"babel": {
"presets": [
"stage-0",
"es2015-node4"
],
"plugins": [
[
"transform-async-to-module-method",
{
"module": "bluebird",
"method": "coroutine"
}
]
]
},
"ava": {
"files": [
"spec/*.js"
],
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}