-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.11 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.11 KB
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
{
"name": "inet-henge",
"version": "1.4.9",
"description": "Generate d3.js based Network Diagram from JSON data.",
"license": "MIT",
"keywords": [
"network",
"diagram",
"d3.js",
"cola.js"
],
"repository": {
"type": "git",
"url": "git://github.com/codeout/inet-henge.git"
},
"bugs": {
"url": "https://github.com/codeout/inet-henge/issues"
},
"author": {
"name": "Shintaro Kojima",
"email": "goodies@codeout.net",
"url": "http://github.com/codeout"
},
"main": "inet-henge.js",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/crypto-js": "^4.2.2",
"@types/d3": "~3",
"@types/node": "^22.19.17",
"crypto-js": "^4.2.0",
"d3": "~3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^13.0.0",
"prettier": "^3.8.2",
"ts-loader": "^9.5.7",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"webcola": "^3.4.0",
"webpack": "^5.106.1",
"webpack-cli": "^7.0.2",
"webpack-merge": "^6.0.1"
},
"scripts": {
"lint": "npx eslint $INIT_CWD/src",
"build": "cd $INIT_CWD && npm run clean && npm run dev && npm run prod",
"type-check": "npx tsc --project $INIT_CWD/tsconfig.json --noEmit",
"check": "npm run lint && npm run type-check",
"dev": "npx webpack --config $INIT_CWD/webpack.dev.js",
"prod": "npx webpack --config $INIT_CWD/webpack.prod.js",
"clean": "rm -rf $INIT_CWD/{inet-henge*.js*, plugin*.js*, dist}",
"watch": "npx webpack --config $INIT_CWD/webpack.dev.js --watch",
"format": "npx prettier --ignore-unknown --ignore-path .gitignore --write",
"build-all": "npm run build && for i in plugins/*; do cd $i; echo 🔵 $i; npm run build; cd -; done",
"type-check-all": "npm run type-check && for i in plugins/*; do cd $i; echo 🔵 $i; npm run type-check; cd -; done",
"lint-all": "npm run lint && for i in plugins/*; do cd $i; echo 🔵 $i; npm run lint; cd -; done",
"check-all": "npm run lint-all && npm run type-check-all",
"format-all": "npx prettier --ignore-unknown --ignore-path .gitignore --write **/*.ts"
}
}