forked from cmidgley/cncjs-pendant-ps3
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "cncjs-pendant-gamepad",
"description": "A cncjs pendant using a supported gamepad.",
"keywords": [
"cncjs",
"pendant",
"gamepad"
],
"version": "2.0.0-dev.2",
"license": "MIT",
"contributors": [
"Jim Derry <[email protected]>",
"Austin St. Aubin <[email protected]>",
"Chris Midgley <[email protected]>"
],
"homepage": "https://github.com/balthisar/cncjs-pendant-gamepad#readme",
"bugs": "https://github.com/balthisar/cncjs-pendant-gamepad/issues",
"repository": "github:balthisar/cncjs-pendant-gamepad",
"type": "module",
"engines": {
"node": ">=12"
},
"bin": "bin/cncjs-pendant-gamepad.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node-gyp build",
"prepare": "npm run build-ts && npm run copy-files",
"build-ts": "tsc",
"copy-files": "cpy 'src/*.json' lib"
},
"dependencies": {
"bindings": "^1.5.0",
"commander": "^9.0.0",
"jsonwebtoken": "^8.5.1",
"nan": "^2.15.0",
"npmlog": "^6.0.1",
"socket.io-client": "^2.4.0",
"cpy-cli": "^4.1.0",
"deepmerge": "^4.2.2"
},
"devDependencies": {
"@types/bindings": "^1.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"@types/npmlog": "^4.1.4"
}
}