-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "d3-indented-tree",
"version": "0.6.0",
"type": "module",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"homepage": "https://github.com/EE2dev/d3-indented-tree",
"scripts": {
"b-clean-build": "rm -rf build && mkdir build",
"b-rollup": "rollup -c",
"b-uglify": "terser build/d3-indented-tree.js -c -m -o build/d3-indented-tree.min.js",
"b-eslint": "eslint index.js src",
"b-tape": "node test/reusableChart-test.js | tap-spec",
"build": "npm run -s b-rollup & npm run -s b-eslint & npm run -s b-uglify",
"test": "npm run b-tape"
},
"author": "Mihael Ankerst",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^3.1.0",
"lodash": ">=4.17.19",
"rollup": "^4.53.2",
"tap-spec": "^5.0.0",
"tape": "^4.10.2",
"terser": "^5.24.0"
},
"dependencies": {
"d3": "^7.8.5"
},
"overrides": {
"trim-newlines": "^3.0.1",
"trim": "^0.0.3"
}
}