-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 996 Bytes
/
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
{
"name": "gau",
"version": "1.0.0",
"description": "Visual exploration of Gaussian Processes",
"main": "main.js",
"scripts": {
"build": "webpack",
"serve": "webpack-serve --config ./webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-fix": "eslint --config .eslintrc.json --fix --ext .js,.html src"
},
"author": "Jochen Görtler; Rebecca Kehlbeck",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-external-helpers": "^6.22.0",
"cpx": "^1.5.0",
"eslint": "^5.12.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^5.0.0",
"source-map-explorer": "^1.8.0",
"svelte": "^2.9.1",
"svelte-loader": "^2.12.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-serve": "^2.0.3"
},
"dependencies": {
"d3": "^5.8.0",
"ml-matrix": "^5.2.1",
"random": "^2.0.12"
}
}