forked from MarshallOfSound/electron-devtools-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "electron-devtools-installer",
"version": "2.2.5",
"description": "An easy way to install Dev Tools extensions into Electron applications",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"lint-fix": "yarn run lint --fix",
"compile": "babel src --out-dir dist",
"prepublish": "yarn run compile",
"pretest-unit": "yarn run compile",
"test": "yarn run lint && yarn run test-unit",
"test-unit": "electron-mocha ./test --recursive --compilers js:babel-core/register --timeout 60000 -R spec-xunit-file -r test/setup.js"
},
"keywords": [
"electron",
"dev",
"tools"
],
"author": {
"name": "Samuel Attard",
"email": "[email protected]",
"url": "www.samuelattard.com"
},
"bugs": {
"url": "https://github.com/GPMDP/electron-devtools-installer/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GPMDP/electron-devtools-installer.git"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.25.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-fs": "chaijs/chai-fs",
"electron": "1.4.15",
"electron-mocha": "^3.0.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"mocha-testdata": "^1.2.0",
"spec-xunit-file": "0.0.1-3"
},
"dependencies": {
"rimraf": "^3.0.0",
"semver": "^5.3.0",
"unzip-crx": "^0.2.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
}
}