-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.66 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.66 KB
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
{
"name": "scope",
"version": "0.1.0",
"description": "A JS based, hardware-accelerated oscilloscope supporting network, audio and generic sources and sinks",
"repository": "git@github.com:Yatekii/scope.git",
"author": "Noah Huesser <yatekii@yatekii.ch>",
"license": "MIT",
"main": "build/js/bundle.js",
"module": "build/js/bundle.mjs",
"scripts": {
"build": "rm -rf build/js && mkdir build/js && DEPS=1 rollup -c ./scripts/rollup.umd.js && DEPS=1 rollup -c ./scripts/rollup.es.js ",
"watch": "DEPS=1 PORT=8080 WATCH_DIR=./build/ rollup -c ./scripts/rollup.watch.js --watch",
"test": "jest src/**",
"test:watch": "jest src/** --watch"
},
"dependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"cssnano": "^3.10.0",
"fft-windowing": "^0.1.4",
"jsfft": "^0.0.2",
"jsplumb": "^2.3.0",
"mithril": "^1.0.1",
"mithril-stream": "^1.0.0",
"postcss-cssnext": "^2.9.0",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"require": "^2.4.20",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.0",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-livereload": "^0.4.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-pathmodify": "^1.0.1",
"rollup-plugin-postcss": "^0.2.0",
"rollup-plugin-serve": "^0.1.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"spectre.css": "^0.2.14"
}
}