-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
62
63
64
65
66
67
{
"name": "treespider",
"version": "1.0.1",
"description": "An organization structure chart library for displaying organization structure in style",
"main": "./dist/es/treeSpider.bundle.min.js",
"author": "Abayomi Amusa",
"types": "./dist/types/core/treeSpider.d.ts",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"rollup": "rollup -c",
"rollup-watch": "rollup -c='./rollup.config.mjs' -w",
"sass": "sass scss/treeSpider.scss:dist/css/treeSpider.css -w",
"sass-c": "sass scss/treeSpider.scss:dist/css/treeSpider.css",
"tsw": "tsc -w",
"build-ts": "rm -rf ./dist/types; tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulosabayomi/treeSpider.git"
},
"bugs": {
"url": "https://github.com/paulosabayomi/treeSpider/issues"
},
"homepage": "https://github.com/paulosabayomi/treeSpider",
"files": [
"dist"
],
"keywords": [
"treeSpider",
"tree chart",
"organization structure",
"organization structure library",
"organization structure chart",
"organization hierarchy",
"organization hierarchy library",
"organization hierarchy chart",
"company structure",
"company structure chart",
"company hierarchy",
"company hierarchy library",
"company hierarchy chart",
"organization tree",
"organization chart"
],
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@faker-js/faker": "^9.0.3",
"@jest/globals": "^29.7.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"d3": "^7.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-resolve": "^29.7.0",
"jsdom": "^25.0.1",
"rollup": "^4.24.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3"
}
}