-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.28 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
73
74
75
76
{
"name": "@ustutt/grapheditor-webcomponent",
"version": "0.7.0",
"description": "Webcomponent for displaying and editing graphs.",
"author": "Fabian Bühler <[email protected]>",
"browser": "./lib/index.js",
"types": "./lib/index.d.ts",
"typesVersions": {
">=3.6": {
"*": [
"*"
]
}
},
"directories": {
"doc": "docs",
"lib": "lib",
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UST-MICO/grapheditor.git"
},
"keywords": [
"webcomponent",
"d3",
"graph",
"editor",
"svg"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/UST-MICO/grapheditor/issues"
},
"homepage": "https://github.com/UST-MICO/grapheditor#readme",
"scripts": {
"start": "webpack serve --config webpack-dev.config.js",
"lint": "eslint --ext=.ts",
"lint-all": "eslint --ext=.ts .",
"doc": "typedoc --exclude **/node_modules/**/*.* --exclude **/lib/**/* --exclude **/lib-esm/**/* --externalPattern **/node_modules/**/* --excludeExternals --entryPoints ./src/* --entryPointStrategy expand ./src --emit docs --out typedoc --json docs/typedoc.json",
"clean": "rm -rf _bundles lib lib-esm",
"package": "tsc",
"package-es6": "tsc -m es6 --outDir lib-esm",
"package-bundle": "webpack --mode production",
"package-all": "npm run clean && npm run package && npm run package-es6 && npm run package-bundle"
},
"dependencies": {
"d3-drag": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-zoom": "^3.0.0"
},
"devDependencies": {
"@types/d3": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@webpack-cli/serve": "^1.7.0",
"chai": "^5.0.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.29.1",
"html-webpack-plugin": "^5.6.0",
"mocha": "^10.2.0",
"simulant": "^0.2.2",
"source-map-loader": "^3.0.2",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typedoc": "^0.25.7",
"typescript": "~4.6.4",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^7.0.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
}
}