forked from PierreCapo/treeviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "treeviz",
"version": "1.3.0",
"description": "Library which aims to represent trees for data visualization",
"keywords": [
"d3",
"data",
"visualization",
"tree",
"decision",
"hierarchy",
"dynamic"
],
"repository": {
"type": "git",
"url": "git://github.com/PierreCapo/treeviz.git"
},
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"types": "./dist/typescript/index.d.ts",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack-dev-server --mode=development",
"test": "jest",
"lint": "tslint src/*.ts"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@types/node": "^10.12.18",
"@types/webpack": "^4.4.22",
"@types/webpack-dev-server": "^3.1.1",
"babel-loader": "^8.0.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@types/d3": "^5.5.0",
"d3": "^5.7.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}