-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
128 lines (128 loc) · 4.35 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "spot",
"license": "Apache-2.0",
"version": "0.2.0",
"homepage": "https://github.com/NLeSC/spot",
"description": "Spot: an extensible facet browser. Easily, interactively and quickly visualize complex data.",
"keywords": [
"visualization",
"crossfilter",
"multi-dimensional"
],
"scripts": {
"demo": "git subtree push --prefix dist origin gh-pages",
"clean": "del node_modules dist/spot.css dist/spot.bundle.js",
"templates": "rm -f ./src/templates.js && puglatizer -d templates -o ./src/templates.js",
"css": "stylus -o dist --include-css stylesheets/app.styl",
"css-watch": "stylus -w -o dist --include-css stylesheets/app.styl",
"prebuild": "rm -rf dist/js dist/app.css dist/index.html && npm run fonts && npm run css && npm run templates",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=production webpack --production -d --profile --colors --display-error-details --display-cached --config webpack.config.js",
"dist": "npm run templates && npm run css && npm run fonts && npm run build",
"check": "jasmine",
"doc": "jsdoc --configure .jsdoc.json --destination docs/api/ --readme README.md --verbose --recurse src/",
"coverage": "istanbul cover jasmine ; codacy-coverage < coverage/lcov.info",
"test": "npm run templates ; npm run check",
"fonts": "cp -r 'node_modules/material-design-icons/iconfont' dist/fonts",
"client": "npm run postinstall && npm run dist && NODE_ENV=production webpack-dev-server --production --progress --color --hot --inline --open",
"postinstall": "npm run fonts && npm run css && npm run templates",
"proxy": "node ./proxy.js",
"start": "concurrently \"npm run proxy\" \"npm run client\""
},
"readmeFilename": "README.md",
"author": {
"name": "Jisk Attema",
"email": "[email protected]"
},
"contributors": [
{
"name": "Faruk Diblen",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/NLeSC/spot.git"
},
"bugs": {
"url": "https://github.com/NLeSC/spot/issues"
},
"semistandard": {
"ignore": [
"/dist/spot.bundle.js",
"/docs"
]
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"concurrently": "^4.1.0",
"cors-anywhere": "^0.4.1",
"cpx": "^1.5.0",
"crossfilter2": "^1.5.3",
"dotenv": "^6.2.0",
"dotenv-webpack": "^1.7.0",
"file-saver": "^1.3.3",
"form-data": "^2.3.1",
"mkdirp": "^0.5.1",
"net": "^1.0.2",
"tls": "0.0.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@gfx/zopfli": "^1.0.10",
"ampersand-app": "^2.0.0",
"ampersand-collection": "^2.0.0",
"ampersand-model": "^8.0.1",
"ampersand-router": "^4.0.0",
"ampersand-view": "^10.0.1",
"ampersand-view-switcher": "^2.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"chart.js": "^2.1.6",
"chroma-js": "^1.1.1",
"codacy-coverage": "^2.0.0",
"compression-webpack-plugin": "^2.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"csv": "^1.1.0",
"del-cli": "^0.2.1",
"dialog-polyfill": "^0.4.10",
"domify": "^1.4.0",
"domready": "^1.0.8",
"favicon-setter": "^0.1.1",
"file-loader": "^3.0.1",
"font-awesome": "^4.6.3",
"gridster": "^0.5.6",
"html-webpack-plugin": "^4.0.0-beta.5",
"image-webpack-loader": "^4.6.0",
"imports-loader": "^0.8.0",
"intro.js": "^2.5.0",
"istanbul": "^0.4.3",
"jasmine": "^2.4.1",
"jquery": "^3.1.1",
"jsdoc": "^3.4.0",
"json-loader": "^0.5.7",
"local-links": "^1.4.0",
"material-design-icons": "^3.0.1",
"material-design-lite": "^1.1.3",
"minami": "^1.1.1",
"moment": "^2.13.0",
"moment-timezone": "^0.5.4",
"puglatizer": "^1.2.0",
"semistandard": "^9.0.0",
"sigma": "^1.2.0",
"socket.io-client": "^2.2.0",
"sortablejs": "^1.4.2",
"spot-framework": "git://github.com/NLeSC/spot-framework.git",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"terser-webpack-plugin": "^1.2.1",
"vis": "^4.19.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-dev-server": "^3.1.14",
"webpack-node-externals": "^1.7.2"
}
}