forked from FWeinb/electron-screenshot-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 850 Bytes
/
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
{
"name": "electron-screenshot-service",
"main": "src/index.js",
"description": "Take screenshots using electron",
"version": "4.0.2",
"author": "Fabrice Weinberg <[email protected]>",
"repository": "https://github.com/FWeinb/electron-screenshot-service",
"license": "MIT",
"scripts": {
"postinstall": "cd ./electron-service && npm install .",
"test": "./node_modules/mocha/bin/mocha test"
},
"files": [
"electron-service",
"example",
"src",
"test",
"LICENSE",
"README.md"
],
"dependencies": {
"axon": "^2.0.2",
"bluebird": "^3.4.6",
"cross-spawn": "^5.0.0",
"electron": "^1.4.5"
},
"devDependencies": {
"is-png": "^1.0.0",
"mocha": "^3.1.2",
"pngparse": "^2.0.1",
"xo": "^0.16.0"
},
"xo": {
"esnext": false,
"envs": [
"node"
]
}
}