-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 868 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
{
"name": "electron-cppgraphql",
"license": "MIT",
"version": "2.0.0",
"description": "Node Native Module (built for electron) which exposes fetch and subscribe entrypoints to go with cppgraphqlgen",
"keywords": [
"test"
],
"main": "lib/index.js",
"scripts": {
"debug": "cmake-js build -D && cross-env USE_DEBUG_MODULE=1 node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"prepare": "cmake-js build",
"postinstall": "cmake-js build",
"test": "jest"
},
"author": "Bill Avery",
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "11.2.0",
"arch": "x64"
},
"dependencies": {
"bindings": "1.5.0",
"cmake-js": "^6.1.0",
"cross-env": "7.0.3",
"electron": "~13.6.6",
"nan": "^2.14.0"
},
"devDependencies": {
"@jest-runner/electron": "^3.0.0",
"jest": "^26.6.0"
}
}