-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.32 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
77
78
79
80
81
{
"name": "jay-gee-eff",
"version": "4.0.0",
"description": "JGF - JSON Graph Format manipulation module for JavaScript. Reads and writes JGF files.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.6.11"
},
"packageManager": "pnpm@8.6.11",
"scripts": {
"build": "pnpm exec tsc",
"test": "pnpm exec jest --config jestconfig.json",
"lint": "pnpm exec eslint **/*.ts && pnpm prettier",
"lint:fix": "pnpm exec eslint --fix **/*.ts && pnpm prettier:fix",
"prettier": "pnpm exec prettier --check .",
"prettier:fix": "pnpm exec prettier --write .",
"prepare": "pnpm exec husky install",
"upg": "pnpm exec npm-check-updates --interactive",
"demo": "pnpm exec ts-node demo/nba-demo.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigman73/jay-gee-eff.git"
},
"keywords": [
"JGF",
"jsongraph",
"graph",
"nodes",
"vertices",
"edges",
"relationships",
"javascript",
"es7"
],
"author": "Bigman73 (https://github.com/bigman73/jay-gee-eff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bigman73/jay-gee-eff/issues"
},
"homepage": "https://github.com/bigman73/jay-gee-eff#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/check-types": "^7.3.4",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.3",
"@types/lodash.isempty": "^4.4.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.6.2",
"npm-check-updates": "^16.10.17",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"@types/node": "^18.11.18"
},
"dependencies": {
"check-types": "^11.2.2",
"fast-clone": "^1.5.13",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"jsonschema": "^1.4.1",
"lodash.isempty": "^4.4.0"
}
}