-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 966 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
34
35
36
{
"name": "das",
"description": "NodeJS library for connecting to the DasKeyboard 5Q",
"version": "0.0.1",
"author": "The 5Q Reversers",
"contributors": [
"Mike Gardner <mikejr83@gmail.com>",
"Chris Smith <chris@hichris.com>",
"Stephen Bird <sebirdman@gmail.com>"
],
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"lint": "tslint -p ./",
"poc-ts": "ts-node --project tsconfig.json POC/ts/index.ts",
"prebuild": "npm-run-all clean",
"test": "echo \"Ya we probably need to have some unit tests...\""
},
"dependencies": {
"node-hid": "^0.7.2"
},
"devDependencies": {
"@types/node": "^10.5.1",
"@types/node-hid": "^0.7.0",
"@types/usb": "^1.1.6",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
}
}