-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.3 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
{
"name": "usbtronica",
"version": "0.0.1",
"description": "simple synth and hw connectivity",
"scripts": {
"build": "rollup -c rollup.config.js",
"unittest": "npm run bundle:test && karma start --singleRun",
"unittest:watch": "rollup -c rollup.test.config.js -w & karma start --no-single-run --auto-watch",
"watch": "rollup -c rollup.config.js -w",
"start": "serve -l tcp://0.0.0.0:5000 docs",
"dev": "npm-run-all --parallel start watch"
},
"author": "Lars Knudsen",
"license": "BSD-2-Clause",
"dependencies": {
"lit-element": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@types/dom-mediacapture-record": "^1.0.3",
"@types/w3c-web-usb": "^1.0.0",
"@types/web-bluetooth": "0.0.4",
"@webcomponents/webcomponentsjs": "^2.2.10",
"npm-run-all": "^4.1.5",
"rollup": "^1.27.1",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-cleaner": "^0.2.0",
"rollup-plugin-copy-assets-to": "^1.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-terser": "^5.2.0",
"serve": "^10.1.1",
"workbox-build": "^4.3.1"
}
}