-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@diefarbe/lib",
"description": "NodeJS library for connecting to the DasKeyboard 5Q",
"version": "0.0.4",
"author": "The 5Q Reversers",
"contributors": [
"Mike Gardner <mikejr83@gmail.com>",
"Chris Smith <chris@hichris.com>",
"Stephen Bird <sebirdman@gmail.com>"
],
"repository": "diefarbe/node-lib",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "tsc",
"build-assets": "ts-node support/build-assets.ts",
"clean": "rimraf ./dist",
"lint": "tslint -p tsconfig.json",
"poc-js": "node POC/js/index.js",
"poc-ts": "ts-node --project tsconfig.json POC/ts/index.ts",
"postbuild": "npm-run-all build-assets",
"prebuild": "npm-run-all clean",
"test": "env TS_NODE_PROJECT=tsconfig.test.json nyc jasmine-ts --config=jasmine.json",
"watch-test": "nodemon --ext ts --exec npm test"
},
"dependencies": {
"node-hid": "^0.7.2"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/handlebars": "^4.0.38",
"@types/jasmine": "^2.8.8",
"@types/node": "^10.5.1",
"@types/node-hid": "^0.7.0",
"fs-extra": "^6.0.1",
"handlebars": "^4.0.11",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.2.1",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"ts-node": "^7.0.0",
"tslib": "^1.9.3",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"reporter": [
"lcov",
"text-summary"
]
}
}