-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1022 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
36
{
"name": "treezjs",
"version": "1.0.0",
"main": "index.js",
"module": "main.js",
"repository": "https://github.com/stefaneidelloth/treezjs.git",
"author": "Stefan Eidelloth <schnumbl [at] posteo [dot] de>",
"license": "MIT",
"dependencies": {
"codemirror": "6.0.1",
"d3": "7.8.5",
"d3-sankey": "0.12.3",
"d3-scale-chromatic": "3.0.0",
"flag-icon-css": "4.1.7",
"jquery": "3.7.0",
"requirejs": "2.3.6",
"starboard-notebook": "0.15.7",
"starboard-observable": "0.1.7",
"starboard-wrap": "0.4.1",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"xlsx": "0.18.5"
},
"devDependencies": {
"@babel/core": "7.22.1",
"@babel/preset-env": "7.22.4",
"babel-jest": "29.5.0",
"jest": "29.5.0",
"jest-cli": "29.5.0"
},
"scripts": {
"test": "jest --runInBand",
"test-coverage": "jest --coverage --collectCoverageFrom src/**/*.js",
"debug": "chrome && node --inspect-brk ./node_modules/jest/bin/jest.js --watch --runInBand"
}
}