mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
64 lines
1.6 KiB
{
|
|
"name": "dagre-d3-es",
|
|
"version": "7.0.13",
|
|
"description": "",
|
|
"license": "MIT",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"bundle": "chmod +x bundle.sh ; ./bundle.sh && cp dist/dagre-d3*.js ../tbo47.github.io",
|
|
"generate_types": "find src -name '*.d.ts' -type f -delete ; tsc --build",
|
|
"prepack": "npm run generate_types",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint --fix .",
|
|
"format": "prettier --write .",
|
|
"test": "vitest ",
|
|
"my_1_npm_login": "npm login",
|
|
"my_2_publish": "echo update_package_version ; git clean -xdf ; npm ci ; npm publish",
|
|
"compile_js_as_ts": "tsc src/index.js --AllowJs --checkJs --outDir dist/"
|
|
},
|
|
"keywords": [
|
|
"dagre-d3"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tbo47/dagre-es.git"
|
|
},
|
|
"dependencies": {
|
|
"d3": "^7.9.0",
|
|
"lodash-es": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/d3": "^7.4.3",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"esbuild": "^0.25.10",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Thibaut Lassalle",
|
|
"url": "https://tbo47.github.io/"
|
|
},
|
|
{
|
|
"name": "Alois Klink",
|
|
"url": "https://github.com/aloisklink"
|
|
},
|
|
{
|
|
"name": "David Newell",
|
|
"url": "https://github.com/rustedgrail"
|
|
},
|
|
{
|
|
"name": "Sidharth Vinod",
|
|
"url": "https://github.com/sidharthv96"
|
|
}
|
|
],
|
|
"files": [
|
|
"src/**/*",
|
|
"!src/**/*.test.js"
|
|
],
|
|
"types": "./src/index.d.ts"
|
|
}
|
|
|