-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "analyze",
"version": "1.2.2",
"description": "Data manipulation in a browser",
"main": "index.html",
"scripts": {
"build": "browserify src/main.js -t [ vueify ] -t [ babelify ] -g [ envify --NODE_ENV production ] | uglifyjs -cm > dist/bundle.js",
"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'",
"uglify": "uglifyjs dist/bundle.js > dist/bundle.min.js",
"server": "http-server ./ -a localhost -o"
},
"author": "Anton Zemlyansky",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babelify": "^10.0.0",
"browserify": "^14.5.0",
"browserify-shim": "^3.8.14",
"envify": "^4.0.0",
"http-server": "^0.11.1",
"nodemon": "^1.18.9",
"uglify-es": "^3.3.10",
"vueify": "^9.4.1"
},
"dependencies": {
"block-stream2": "^1.1.0",
"csv-parse": "^1.3.3",
"csv-parser": "^1.12.1",
"drag-and-drop-files": "0.0.1",
"file-saver": "^1.3.8",
"filestream": "^4.1.3",
"flat": "^2.0.1",
"handsontable": "^6.2.2",
"highcharts": "^6.2.0",
"highcharts-vue": "^1.2.0",
"html-escape": "^2.0.0",
"is": "^3.3.0",
"is-json": "^2.0.1",
"json2csv": "^4.3.2",
"moment": "^2.23.0",
"object-path": "^0.11.4",
"online-stats": "^1.3.0",
"query-string": "^4.3.2",
"split": "^1.0.0",
"stream-filter": "^2.1.0",
"stream-http": "^2.6.3",
"streamcount": "^1.0.1",
"streamsaver": "^1.0.1",
"through2": "^2.0.5",
"vue": "^2.5.21",
"vue-chartist": "^2.2.0",
"vue-highcharts": "0.0.10",
"vue-material": "0.7.1",
"xml-nodes": "^0.1.5",
"xml-objects": "^1.0.1",
"xml2js": "^0.4.19"
},
"repository": {
"type": "git",
"url": "git+https://github.com/analyzeli/analyze.git"
}
}