-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 997 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
{
"name": "electron-node-tap",
"version": "1.1.4",
"description": "Run node-tap in Electron.",
"main": "index.js",
"bin": {
"electron-node-tap": "bin/run.js"
},
"scripts": {
"start": "node bin/run-local.js",
"test": "npm run test:main && npm run test:renderer",
"test:main": "node bin/run-local.js ./test/*.spec.js",
"test:renderer": "node bin/run-local.js ./test/renderer/*.spec.js --renderer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron-utils/electron-tap.git"
},
"keywords": [
"Electron",
"Platform"
],
"author": "jwu",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron-utils/electron-tap/issues"
},
"homepage": "https://github.com/electron-utils/electron-tap",
"dependencies": {
"chalk": "^1.1.3",
"electron": "^1.6.2",
"globby": "^6.1.0",
"tap": "^10.3.2",
"tap-mocha-reporter": "electron-utils/tap-mocha-reporter#d3c1a0d",
"yargs": "^7.0.1"
}
}