-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
45 lines (45 loc) · 1.16 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/remote",
"version": "0.0.0-development",
"main": "renderer/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/electron/remote.git"
},
"peerDependencies": {
"electron": ">= 13.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.17.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"electron": "22.x",
"mocha": "^10.1.0",
"mocha-junit-reporter": "^1.23.3",
"mocha-multi-reporters": "^1.1.7",
"ts-node": "^8.10.2",
"typescript": "^4.1.3",
"walkdir": "^0.4.1",
"yargs": "^15.3.1"
},
"scripts": {
"prepare": "tsc",
"test": "electron test --extension=ts --require=ts-node/register --exit --js-flags=--expose_gc",
"test:ci": "yarn test --reporter=mocha-multi-reporters --reporter-options=configFile=.circleci/mocha-reporter-config.json"
},
"files": [
"README.md",
"package.json",
"main",
"renderer",
"dist/src",
"index.d.ts"
],
"types": "index.d.ts"
}