-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "@openownership/bods-dagre",
"version": "0.4.0",
"files": [
"dist"
],
"main": "dist/bods-dagre.js",
"repository": "github:openownership/visualisation-tool",
"license": "Apache License 2.0",
"type": "module",
"dependencies": {
"@iconfu/svg-inject": "^1.2.3",
"bezier-js": "^2.6.1",
"canvas-toBlob": "^1.0.0",
"compare-versions": "^6.1.1",
"computed-styles": "^1.1.2",
"d3": "^7.9.0",
"dagre-d3-es": "^7.0.10",
"file-saver": "^2.0.5",
"flag-icons": "6.1.1",
"tippy.js": "^6.3.7"
},
"scripts": {
"demo": "webpack --config=webpack.demo.config.js",
"dev": "webpack --config=webpack.dev.config.js",
"library": "webpack --config=webpack.library.config.js",
"prepublishOnly": "npm run library",
"test": "jest",
"lint": "eslint src",
"start": "webpack-dev-server --open --config=webpack.dev.config.js"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^6.8.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^5.3.10",
"vitest": "^2.1.2",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.15.1"
}
}