forked from joe-re/spectron-fake-menu
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.3 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
50
51
52
53
54
{
"name": "spectron-menu-addon",
"version": "0.4.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:preload": "tsc -p tsconfig.preload.json",
"test": "yarn build && yarn build:preload && mocha --reporter spec --require ts-node/register test/*test.ts && rm src/preload.js ",
"lint": "tslint --config tslint.json -p tsconfig.json --format stylish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SALT-AND-PEPPER/spectron-menu-addon.git"
},
"keywords": [
"spectron",
"menu",
"mock"
],
"contributors": [
{
"name": "davidka",
"url": "https://github.com/davidka"
}
],
"license": "MIT",
"peerDependencies": {
"electron": ">=1.7.11",
"spectron": ">=3.7.2"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.47",
"chai": "^4.1.2",
"dts-bundle": "^0.7.3",
"electron": "^1.7.11",
"electron-prebuilt": "^1.4.13",
"extract-text-webpack-plugin": "^3.0.2",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"spectron": "^3.7.2",
"ts-loader": "^3.3.1",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
}
}