forked from getstation/electron-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.29 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "electron-chrome-extension",
"version": "4.0.3",
"description": "Chrome Extensions Engine for Electron",
"main": "index.js",
"scripts": {
"prestart": "rm -rf ./lib/ && tsc -p tsconfig.dev.json",
"start": "concurrently -k -r -s first \"npm:start:*\"",
"start:runner": "electron playground/main.js --inspect=9222",
"pretest": "rm -rf ./lib/ && tsc -p tsconfig.test.json && cp -R test/assets lib/test/assets",
"test": "NODE_ENV=test concurrently -k -r -s first \"npm:test:*\"",
"test:watch": "tsc -p . -w",
"test:runner": "xvfb-maybe electron-mocha --debug --interactive --require-main test/main-loader.js --renderer test/loader.js",
"ci": "npm run pretest && tslint -p . && NODE_ENV=test xvfb-maybe electron-mocha --require-main test/main-loader.js --renderer test/loader.js",
"prepublishOnly": "npm run ci && rm -rf ./lib/ && tslint -p . && tsc -p .",
"playground:reset": "rm -rf playground/.electron-user-data"
},
"author": "Station <[email protected]>",
"license": "ISC",
"peerDependencies": {
"electron": ">=6.0.2"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^5.2.5",
"@types/tmp": "0.0.33",
"concurrently": "^4.1.0",
"electron": "^6.0.2",
"electron-mocha": "^8.0.1",
"electron-process-manager": "^0.7.1",
"mocha": "^5.2.0",
"ts-mocha": "^2.0.0",
"tslint": "^5.11.0",
"tslint-config-station": "^0.5.1",
"typescript": "^3.1.6",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"capitalize": "^2.0.0",
"content-security-policy-parser": "^0.1.1",
"download-crx": "^1.0.5",
"electron-better-web-request": "^1.0.1",
"electron-fetch": "^1.3.0",
"electron-ipc-plus": "^1.3.4",
"electron-simple-ipc": "^1.0.2",
"electron-simple-rpc": "github:alexstrat/electron-simple-rpc#a5195677a2c8a4a9bd67ae5120ee4d7037f88db3",
"fs-extra": "^7.0.1",
"glob": "7.1.4",
"mime-types": "^2.1.21",
"p-queue": "^3.0.0",
"querystring": "^0.2.0",
"recursive-lowercase-json": "^0.2.0",
"string.prototype.matchall": "^3.0.1",
"tmp-promise": "^1.0.5",
"unzip-crx-3": "^0.2.0",
"uuid": "^3.2.1",
"xml-js": "^1.6.8"
},
"volta": {
"node": "12.8.1",
"yarn": "1.17.3"
}
}