- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "dagre-d3-es",
|
|
"version": "7.0.10",
|
|
"description": "",
|
|
"author": "Thibaut Lassalle",
|
|
"license": "MIT",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"generate_types": "tsc --build --clean && tsc --build && prettier --write .",
|
|
"prepack": "npm run generate_types",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint --fix .",
|
|
"format": "prettier --write .",
|
|
"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": "https://github.com/tbo47/dagre-es"
|
|
},
|
|
"dependencies": {
|
|
"d3": "^7.8.2",
|
|
"lodash-es": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/d3": "^7.4.0",
|
|
"@types/lodash-es": "^4.17.6",
|
|
"eslint": "^8.34.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"prettier": "^2.8.4",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"files": [
|
|
"src/**/*"
|
|
],
|
|
"types": "./src/index.d.ts"
|
|
}
|