-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "electron-process",
"version": "0.1.3",
"description": "Send blocking operations to a background process in electron",
"main": "build/index.js",
"scripts": {
"compile": "babel --presets es2015 -d ./build ./src",
"eslint": "./node_modules/.bin/eslint src",
"prepublish": "babel --presets es2015 -d ./build ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"build"
],
"keywords": [
"node",
"electron",
"background",
"process",
"thread"
],
"author": "Kyle Smith",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/smith-kyle/electron-process.git"
},
"bugs": {
"url": "https://github.com/smith-kyle/electron-process/issues"
},
"homepage": "https://github.com/smith-kyle/electron-process#readme",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"eslint": "^1.9.0"
},
"peerDependencies": {
"electron-prebuilt": "^0.36.4"
},
"dependencies": {
"lodash": "^4.0.0",
"object-hash": "^1.1.0",
"uuid": "^2.0.1"
}
}