-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "kalpa-tree",
"version": "4.3.2",
"description": "An efficient hierarchical tree for the dom",
"node": ">=14.16",
"type": "module",
"dependencies": {
"d3-drag": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"escape-string-regexp": "^1.0.3",
"sass": "^1.51.0",
"scoreboard-colors": "^6.0.0"
},
"devDependencies": {
"double-tap": "^1.0.2",
"esbuild": "^0.14.43",
"esbuild-plugin-fileloc": "^0.0.6",
"JSONStream": "^1.3.5",
"node-stdlib-browser": "^1.2.0",
"request": "^2.36.0",
"smokestack": "^3.4.1",
"tape": "^5.5.3"
},
"scripts": {
"bundle": "node example/build.js",
"css": "sass --no-source-map --load-path=$(node -p 'require(\"scoreboard-colors/__resolve.cjs\")') style/tree.scss dist/tree.css",
"postinstall": "npm run css",
"start": "node example/server.js",
"test": "node test/runner.js | double-tap smokestack",
"watch": "node example/build.js --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/SpiderStrategies/kalpa-tree.git"
},
"author": "Nathan Bowser <nathan.bowser@spiderstrategies.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpiderStrategies/kalpa-tree/issues"
},
"homepage": "https://github.com/SpiderStrategies/kalpa-tree"
}