-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 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
{
"name": "v5-serial-protocol",
"version": "0.5.0",
"description": "TODO",
"main": "dist/v5-serial-protocol.cjs.js",
"typings": "index.d.ts",
"module": "dist/v5-serial-protocol.es.js",
"scripts": {
"start": "ts-node examples/connect.ts",
"build": "tsc && NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerrylum/v5-serial-protocol.git"
},
"files": [
"dist/*",
"index.d.ts",
"/*.min.js*",
"LICENSE",
"README.md"
],
"keywords": [],
"author": "jerrylum <me@jerryio.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jerrylum/v5-serial-protocol/issues"
},
"homepage": "https://github.com/jerrylum/v5-serial-protocol#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^28.1.1",
"babel-jest": "^28.1.1",
"crc": "^4.1.1",
"jest": "^28.1.1",
"node-web-serial-ponyfill": "^0.5.3",
"rollup": "^2.75.6",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.22",
"rollup-plugin-license": "^2.8.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@types/dom-serial": "^1.0.2",
"unzipit": "^1.4.0"
}
}