forked from tgdwyer/WebCola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.21 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
68
69
70
71
72
{
"name": "webcola",
"version": "3.4.0",
"description": "WebCola =======",
"author": "Tim Dwyer",
"license": "MIT",
"homepage": "https://github.com/tgdwyer/WebCola",
"bugs": {
"url": "https://github.com/tgdwyer/WebCola/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tgdwyer/WebCola.git"
},
"keywords": [
"Graph",
"Layout",
"Constraints",
"Optimization"
],
"main": "dist/cola.umd.development.js",
"module": "dist/cola.esm.js",
"unpkg": "dist/cola.umd.production.min.js",
"jsdelivr": "dist/cola.umd.production.min.js",
"types": "dist/cola.d.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"watch": "tsdx watch --noClean --name cola --format esm,umd",
"build": "tsdx build --name cola --format esm,umd",
"postbuild": "npm run typings",
"typings": "tsc -p tsconfig.dts.json && rollup -c rollup.dts.config.js",
"test": "tsdx test --passWithNoTests",
"test:watch": "tsdx test --passWithNoTests --watch",
"test:coverage": "tsdx test --passWithNoTests --coverage",
"lint": "tsdx lint src --ext .ts",
"docs": "typedoc",
"prepare": "npm run build",
"release": "release-it --disable-metrics --npm.skipChecks",
"release:pre": "release-it --disable-metrics --npm.skipChecks --preRelease=alpha --npm.tag=next",
"compile-examples": "tsc -p tsconfig.example.json",
"website": "npm run docs && cp dist/cola.umd.production.min.js website/cola.min.js && npm run compile-examples",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:junit": "cypress run --reporter junit --reporter-options 'mochaFile=junit-results/my-test-output.xml'"
},
"devDependencies": {
"@types/d3": "^4.5.0",
"@types/graphlib-dot": "^0.6.1",
"@types/jquery": "^3.3.38",
"cypress": "^4.6.0",
"d3": "^4.5.0",
"d3-dispatch": "^1.0.3",
"d3-drag": "^1.0.4",
"d3-timer": "^1.0.5",
"d3-zoom": "^1.1.4",
"release-it": "^13.6.0",
"rollup-plugin-dts": "^1.4.6",
"three": "^0.116.1",
"tsdx": "^0.13.2",
"typedoc": "^0.17.7",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/d3-dispatch": "^1",
"@types/d3-drag": "^1",
"@types/d3-timer": "^1"
}
}