-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "electron-asset-updater",
"version": "0.0.7",
"description": "Updates binary assets from AWS S3 Bucket",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel index.js --out-file dist/index.js",
"lint": "eslint index.js",
"fix": "eslint --fix index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/secretcowlevel/electron-asset-updater.git"
},
"keywords": [
"asset",
"updater",
"electron",
"s3"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/secretcowlevel/electron-asset-updater/issues"
},
"homepage": "https://github.com/secretcowlevel/electron-asset-updater#readme",
"dependencies": {
"@babel/runtime": "^7.3.1",
"bluebird": "^3.5.3",
"md5-file": "^4.0.0",
"node-unzip-2": "^0.2.7",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"code": "^5.2.4",
"eslint": "^5.15.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lab": "^18.0.2"
}
}