-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.38 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ortho-remote",
"version": "0.4.1",
"description": "Client package for connecting to Ortho Remote Control by Teenage Engineering",
"license": "MIT",
"private": true,
"repository": "happycodelucky/ortho-remote-node",
"author": {
"name": "Paul Bates",
"email": "[email protected]"
},
"keywords": [
"teenage engineering",
"ortho",
"ortho remote",
"ble",
"iot",
"dial",
"knob",
"volume",
"midi"
],
"main": "dist/index.js",
"types": "dts/index.d.ts",
"dependencies": {
"@abandonware/noble": "^1.9.2-15",
"check-types": "^11.1.2",
"debug": "^4.3.3",
"tslib": "^2.3.1",
"weak-napi": "^2.0.2"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.5",
"@types/check-types": "^7.3.3",
"@types/debug": "^4.1.7",
"@types/del": "^3.0",
"@types/gulp": "^4.0.9",
"@types/gulp-bump": "^2.8.2",
"@types/gulp-json-editor": "^2.2.33",
"@types/merge2": "^1.3.1",
"@types/mocha": "^9.1.0",
"@types/noble": "^0.0.40",
"@types/node": "^16.9.0",
"@types/weak-napi": "^2.0.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"del": "^3.0",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-json-editor": "^2.5.6",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"merge2": "^1.4.1",
"mocha": "^9.2.2",
"mocha-typescript": "^1.1.17",
"nyc": "^15.1.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.6.2"
},
"scripts": {
"start": "ts-node --project=./examples/tsconfig.json ./examples/02-events/example-events.ts",
"device-discovery": "ts-node --project=./examples/tsconfig.json ./examples/01-device-discovery/example-device-discovery.ts",
"events": "ts-node --project=./examples/tsconfig.json ./examples/02-events/example-events.ts",
"test": "TS_NODE_PROJECT=./test/tsconfig.json nyc mocha -r ts-node/register -r ./test/prepare.ts test/**/*.spec.ts test/*.spec.ts --exit",
"build": "npx tsc --project ./tsconfig.json -d --declarationDir dts; npx typedoc",
"build:src": "npx tsc -p ./tsconfig.json",
"build:dts": "npx tsc -p ./tsconfig.json -d --declarationDir dts",
"build:docs": "npx typedoc",
"lint": "npx tslint -p ./tsconfig.json; npx tslint --project ./examples/tsconfig.json"
}
}