-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "namely-org-chart",
"version": "1.0.0",
"description": "Namely organization tree",
"main": "index.js",
"scripts": {
"serve": "browser-sync start --config bs-config.js",
"ts": "rm -fr ./dist && tsc -w",
"rollup": "rollup -c --watch",
"test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' c8 --all --exclude '**/*.js' --exclude 'test/**/*.*' --reporter=text --reporter=html mocha --require ts-node/register --recursive 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciopaiva/namely-org-chart.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/luciopaiva/namely-org-chart/issues"
},
"homepage": "https://github.com/luciopaiva/namely-org-chart",
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.1",
"@types/d3": "^6.3.0",
"@types/d3-hierarchy": "^2.0.0",
"@types/mocha": "^8.2.0",
"browser-sync": "^2.26.14",
"c8": "^7.5.0",
"cross-env": "^7.0.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rollup": "^2.38.5",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"d3": "^6.3.0",
"d3-hierarchy": "^2.0.0",
"pixi.js": "^5.3.7"
}
}