forked from anibalsolon/brain-web.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "brainweb",
"version": "1.0.3",
"description": "",
"main": "dist/brainweb.js",
"module": "src/index.js",
"scripts": {
"lint": "eslint src/*.js",
"test": "jest",
"lint-fix": "eslint --fix src/*.js",
"build": "webpack --mode production --config webpack.config.js",
"serve": "webpack serve --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anibalsolon/BrainWeb-js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/anibalsolon/BrainWeb-js/issues"
},
"homepage": "https://github.com/anibalsolon/BrainWeb-js#readme",
"jest": {
"verbose": false,
"transform": {
"\\.js$": "babel-jest"
}
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.14",
"@babel/runtime": "^7.13.10",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"d3": "^6.6.1",
"d3-selection": "^2.0.0",
"firebase": "^8.3.1",
"ml-hclust": "^3.0.0",
"umap-js": "^1.3.3"
}
}