-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.05 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": "ns-joycon",
"version": "0.2.5",
"description": "Extract data from connected Jon-Con of Nintendo Switch.",
"author": "Ze-Hao Wang (Salmon) <[email protected]> (https://salmon.tw)",
"repository": {
"type": "git",
"url": "git+https://github.com/wazho/ns-joycon.git"
},
"bugs": {
"url": "https://github.com/wazho/ns-joycon/issues"
},
"license": "MIT",
"keywords": [
"nintendo",
"switch",
"joycon"
],
"main": "dist/index.js",
"scripts": {
"build": "rimraf -rf dist types && tsc",
"start": "node dist/sample.js",
"dev": "ts-node src/sample.ts",
"test": "jest"
},
"dependencies": {
"lodash": "^4.17.11",
"node-hid": "^0.7.7",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.4",
"@types/node-hid": "^0.7.0",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"typescript": "^3.4.3"
},
"engines": {
"node": ">=6.0.0"
},
"types": "./types/index.d.ts"
}