forked from duinoapp/upload-multitool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.14 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
{
"name": "@duinoapp/upload-multitool",
"version": "0.0.3",
"description": "Micro Controller Uploading Multitool",
"main": "dist/index.js",
"module": "dist/index.min.mjs",
"unpkg": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*.ts test/*.ts",
"lint": "eslint",
"clean": "rm -fr dist",
"build": "yarn clean && yarn lint && yarn build:tsc && yarn bundle && yarn bundle:esm:min && yarn bundle:umd:min && yarn build:stats",
"build:tsc": "tsc",
"build:stats": "(echo '\\033[35;3m' ; cd dist && ls -lh index*js index*gz | tail -n +2 | awk '{print $5,$9}')",
"bundle": "rollup --config rollup.config.js",
"bundle:esm:min": "terser --ecma 6 --compress --mangle --module -o dist/index.min.mjs -- dist/index.mjs && gzip -9 -c dist/index.min.mjs > dist/index.min.mjs.gz",
"bundle:umd:min": "terser --ecma 6 --compress --mangle -o dist/index.umd.min.js -- dist/index.umd.js && gzip -9 -c dist/index.umd.min.js > dist/index.umd.min.js.gz"
},
"author": "Fraser Bullock",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/duinoapp/upload-multitool.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/chai": "^4.3.1",
"@types/crypto-js": "^4.1.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"@types/pako": "^2.0.0",
"@types/w3c-web-serial": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"chai": "^4.3.6",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"rollup": "^3.2.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"terser": "^5.15.1",
"ts-node": "^10.8.0",
"typescript": "^4.6.4",
"yaml": "^2.1.0"
},
"dependencies": {
"axios": "^0.27.2",
"crypto-js": "^4.1.1",
"intel-hex": "^0.1.2",
"pako": "^2.0.4",
"serialport": "^10.4.0"
}
}