-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "electron-workers",
"version": "1.10.3",
"description": "Run electron scripts in managed workers",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "mocha --timeout 9000",
"prepublish": "in-publish && npm-run-all lint clean build || not-in-publish"
},
"author": {
"name": "BJR Matos",
"email": "bjrmatos@gmail.com"
},
"license": "MIT",
"keywords": [
"electron",
"headless",
"workers",
"electron spawn"
],
"homepage": "https://github.com/bjrmatos/electron-workers",
"repository": {
"type": "git",
"url": "git@github.com:bjrmatos/electron-workers.git"
},
"dependencies": {
"debug": "2.3.3",
"lodash.findindex": "4.6.0",
"net-cluster": "0.0.2",
"portscanner": "1.2.0",
"uuid": "3.0.1",
"which": "1.2.12"
},
"devDependencies": {
"babel": "5.8.38",
"electron": "1.6.6",
"eslint": "2.13.1",
"eslint-config-airbnb-base": "3.0.1",
"eslint-plugin-import": "1.16.0",
"in-publish": "2.0.0",
"mocha": "2.5.3",
"npm-run-all": "2.3.0",
"rimraf": "2.5.4",
"should": "9.0.2"
}
}