-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "navigator.serial",
"version": "0.0.1",
"description": "Node Serialport powered `navigator.serial` api shim for us in nodejs and electron.",
"main": "dist/index.js",
"module": "dist/index-esm.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:serialport/navigator.serial.git",
"homepage": "https://github.com/serialport/navigator.serial",
"scripts": {
"test": "npm run unit-test && npm run lint",
"unit-test": "mocha --opts lib/mocha.opts",
"lint": "tsc && tslint lib/*.ts",
"format": "tslint lib/*.ts --fix",
"build": "rm -rf dist-ts dist && tsc -p tsconfig-build.json && rollup -c rollup.config-esm.js && rollup -c rollup.config-umd.js && ts-node bundle-types",
"prepare": "npm run build"
},
"keywords": [
"serialport",
"node serialport",
"navigator.serial"
],
"maintainers": [
{
"name": "Francis Gulotta",
"email": "[email protected]",
"url": "https://www.roborooter.com"
}
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@microsoft/api-extractor": "^7.3.8",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^12.7.1",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"prettier": "^1.15.2",
"rollup": "^1.11.0",
"rollup-plugin-node-resolve": "^5.2.0",
"through2-concurrent": "^2.0.0",
"ts-node": "^8.3.0",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.3333"
},
"engines": {
"node": ">=8"
}
}