-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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-eval",
"version": "0.9.10",
"description": "Run code inside a hidden Electron window",
"main": "index.js",
"scripts": {
"test": "standard src/*.js daemon.js test.js && tap test.js --cov",
"test-tap": "tap test.js -Rtap",
"test-lcov": "mkdir -p coverage && tap test.js -Rsilent --coverage-report=text-lcov > coverage/lcov.info",
"build": "rm -rf lib && babel --presets es2015 src -d lib",
"source": "rm -rf lib && ln -s src lib",
"prepublish": "npm run build",
"publish": "npm run source"
},
"keywords": [
"electron",
"eval",
"hidden",
"spawn"
],
"author": "Matt Bell <mappum@gmail.com>",
"license": "MIT",
"dependencies": {
"cross-spawn": "^5.1.0",
"electron": "^1.6.11",
"ndjson": "^1.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"standard": "^10.0.2",
"tap": "^10.7.0"
},
"optionalDependencies": {
"headless": "https://github.com/paulkernfeld/node-headless/tarball/master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mappum/electron-eval.git"
},
"bugs": {
"url": "https://github.com/mappum/electron-eval/issues"
},
"homepage": "https://github.com/mappum/electron-eval#readme"
}