-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.85 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.85 KB
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
76
77
78
79
{
"name": "rocket-nuimo",
"version": "1.2.1",
"description": "🚀 Client package for connecting to Nuimo Control by Senic",
"license": "MIT",
"private": true,
"repository": "happycodelucky/rocket-nuimo-node",
"author": {
"name": "Paul Bates",
"email": "paul@happycodelucky.com"
},
"keywords": [
"senic",
"nuimo",
"nuimo connect",
"rocket nuimo",
"ble",
"iot",
"dial",
"knob",
"volume"
],
"main": "dist/index.js",
"types": "dts/index.d.ts",
"dependencies": {
"@abandonware/noble": "^1.9.2-14",
"check-types": "^11.1",
"debug": "^4.3",
"tslib": "^2.2",
"weak-napi": "^2.0"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1",
"@types/debug": "^4.1",
"@types/del": "^3.0",
"@types/gulp": "^4.0",
"@types/gulp-bump": "^2.8",
"@types/gulp-json-editor": "^2.2",
"@types/merge2": "^1.3",
"@types/mocha": "^8.2",
"@types/noble": "^0.0.40",
"@types/node": "^14.17",
"@types/weak-napi": "^2.0.0",
"chai": "^4.3",
"chai-as-promised": "^7.1",
"chalk": "^4.1",
"del": "^3.0",
"gulp": "^4.0",
"gulp-bump": "^3.2",
"gulp-json-editor": "^2.5",
"gulp-tslint": "^8.1",
"gulp-typescript": "^5.0",
"merge2": "^1.4",
"mocha": "^8.4",
"mocha-typescript": "^1.1",
"nyc": "^15.1",
"ts-node": "^10.0",
"tslint": "^6.1",
"typedoc": "^0.20",
"typedoc-plugin-markdown": "^3.9",
"typescript": "~4.2"
},
"scripts": {
"device-discovery": "ts-node --project ./examples/tsconfig.json ./examples/01-device-discovery/example-device-discovery.ts",
"display": "ts-node --project ./examples/tsconfig.json ./examples/02-display/example-display.ts",
"animation": "ts-node --project ./examples/tsconfig.json ./examples/02-display/example-animation.ts",
"select-events": "ts-node --project ./examples/tsconfig.json ./examples/03-select-events/example-select-events.ts",
"touch-events": "ts-node --project ./examples/tsconfig.json ./examples/04-gesture-events/example-touch-events.ts",
"swipe-events": "ts-node --project ./examples/tsconfig.json ./examples/04-gesture-events/example-swipe-events.ts",
"hover-events": "ts-node --project ./examples/tsconfig.json ./examples/04-gesture-events/example-hover-events.ts",
"rotate-events": "ts-node --project ./examples/tsconfig.json ./examples/05-rotate-events/example-rotate-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"
}
}