-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.39 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "statsim",
"version": "0.12.1",
"description": "Web app for statistical simulations and bayesian inference",
"main": "electron.js",
"private": true,
"scripts": {
"build": "npm run build-web && npm run build-bin",
"build-web": "browserify src/main.js -t [ vueify ] -t [ babelify ] -g [ envify --NODE_ENV production ] | uglifyjs -cm > dist/bundle.js",
"build-bin": "rm -r bin && mkdir bin && electron-packager . --ignore=\"(node_modules|src)\" --platform linux,win32 --out bin && cd ./bin && for i in */; do zip -r \"${i%/}.zip\" \"$i\"; done",
"build-dev": "browserify src/main.js -t [ vueify ] -o dist/bundle.js --debug",
"watch": "nodemon --watch src --ext vue,js,css,html --exec 'npm run build-dev'",
"electron": "electron .",
"test": "http-server -s -p 8085 & tape test.js | tap-summary && kill $!"
},
"author": "Anton Zemlyansky",
"license": "ISC",
"dependencies": {
"chaikin-smooth": "^1.0.4",
"cookie": "^0.3.1",
"csv-parse": "^3.2.0",
"csv-parser": "^1.12.1",
"d3-array": "^1.2.4",
"d3-hist2d": "^1.0.7",
"dat-js": "^8.0.2",
"density-plot": "^1.0.4",
"dygraphs": "^2.1.0",
"esprima": "^4.0.1",
"file-saver": "^2.0.0",
"filestream": "^4.1.3",
"flat": "^4.1.0",
"handsontable": "^6.2.0",
"html-escape": "^2.0.0",
"is": "^3.2.1",
"is-json": "^2.0.1",
"js-beautify": "^1.8.9",
"js-quantities": "^1.7.2",
"json2csv": "^4.5.1",
"online-stats": "^1.3.0",
"query-string": "^6.2.0",
"split": "^1.0.1",
"stream": "0.0.2",
"stream-filter": "^2.1.0",
"stream-http": "^3.0.0",
"streamsaver": "^1.2.0",
"through2": "^3.0.1",
"vue": "^2.5.17",
"vue-color": "^2.7.0",
"vue-material": "^0.8.1",
"vue2vis": "0.0.15",
"vuedraggable": "^2.17.0",
"webtorrent": "^0.103.4",
"xml-nodes": "^0.1.5",
"xml-objects": "^1.0.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"electron": "^5.0.13",
"electron-debug": "^3.0.0",
"electron-packager": "^12.2.0",
"envify": "^4.1.0",
"http-server": "^0.11.1",
"nodemon": "^1.19.4",
"puppeteer": "^1.20.0",
"tap-summary": "^4.0.0",
"tape": "^4.9.1",
"uglify-es": "^3.3.10",
"vueify": "^9.4.1"
}
}