forked from tbo47/dagre-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "dagre-d3-es",
"version": "7.0.11",
"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 .",
"test": "vitest run",
"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/jest": "^29.4.0",
"@types/lodash-es": "^4.17.6",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"files": [
"src/**/*",
"!src/**/*.test.js"
],
"types": "./src/index.d.ts"
}