forked from electron/windows-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "electron-winstaller",
"version": "0.0.0-development",
"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": {
"build": "babel -d lib/ src/",
"prepublish": "npm run build",
"lint": "eslint src spec",
"test": "npm run lint && ava",
"tdd": "ava --watch",
"semantic-release": "semantic-release"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"asar": "^1.0.0",
"debug": "^4.1.1",
"fs-extra": "^7.0.1",
"lodash.template": "^4.2.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@continous-auth/semantic-release-npm": "1.0.3",
"ava": "^1.2.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"semantic-release": "^15.13.3"
},
"engines": {
"node": ">=6.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-transform-runtime"
]
},
"ava": {
"files": [
"spec/*.js"
],
"failFast": true,
"require": [
"@babel/register",
"@babel/polyfill"
]
}
}