-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "@electricui/transport-node-hid",
"version": "0.7.22-prerelease.2",
"description": "ElectricUI HID Transport for Desktop",
"electricui-dev": true,
"author": "Electric UI <[email protected]> (https://electricui.com)",
"license": "SEE LICENCE IN LICENCE",
"main": "lib/index.js",
"main-when-published": "lib/index.eui.js",
"sideEffects": false,
"types": "lib/index.d.ts",
"files": [
"lib/*",
"manifest.json"
],
"dependencies": {
"@electricui/core": "^0.7.22-prerelease.2",
"bluebird": "^3.5.3",
"debug": "^4.1.1"
},
"devDependencies": {
"@electricui/build-rollup-config": "^0.7.22-prerelease.2",
"@electricui/jest-config": "^0.7.17",
"@types/chai": "^4.1.7",
"@types/chai-subset": "^1.3.2",
"@types/debug": "^4.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^12.12.27",
"@types/node-hid": "^0.7.3",
"@types/sinon": "^7.0.6",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"rollup": "^1.31.1",
"sinon": "^7.2.3",
"ts-node": "^8.5.4",
"tslib": "^1.10.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"@electricui/node-hid": "*"
},
"scripts": {
"prepack": "silversmith prepack",
"build": "rm -rf ./lib && rollup -c",
"postpack": "silversmith postpack",
"test": "export TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' && mocha --require ts-node/register \"test/**/*.ts\" && export TS_NODE_COMPILER_OPTIONS=\"\"",
"coverage": "export TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' && nyc mocha- -require ts-node/register \"test/**/*.ts\" && export TS_NODE_COMPILER_OPTIONS=\"\""
}
}