-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.08 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
{
"keywords": [
"oclif, ngrx, graph, action, effect, angular, component, reducer, store, state, dot"
],
"license": "MIT",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"version": "0.0.13",
"name": "ngrx-graph",
"author": "Ammar Najjar",
"repository": "ammarnajjar/ngrx-graph",
"description": "Generate NgRx actions graph",
"bin": {
"ngrx-graph": "./bin/run"
},
"main": "dist/index.js",
"homepage": "https://github.com/ammarnajjar/ngrx-graph",
"dependencies": {
"fast-glob": "^3.3.2",
"@oclif/core": "^4.0.31",
"@oclif/plugin-help": "^6.2.16",
"lodash": "^4.17.21"
},
"devDependencies": {
"@oclif/test": "^4.1.0",
"eslint-config-oclif": "^5.2.1",
"husky": "^9.1.6",
"shx": "^0.3.4",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.7.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-oclif-typescript": "^3.1.12",
"jest": "^29.7.0",
"oclif": "^4.15.20",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.13.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"globals": "^15.12.0"
},
"oclif": {
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"default": "graph",
"bin": "ngrx-graph",
"dirname": "ngrx-graph",
"commands": "./dist/commands",
"topics": {
"graph": {
"description": "Generate NgRx actions graph"
}
}
},
"scripts": {
"test:ci": "jest",
"prepare": "husky",
"lint": "eslint",
"build": "shx rm -rf dist && tsc -b",
"postpack": "shx rm -f oclif.manifest.json",
"version": "oclif readme && git add README.md",
"test": "jest --watch --collectCoverage --cache",
"prepack": "npm run build && rm tsconfig.tsbuildinfo && oclif manifest && oclif readme"
},
"engines": {
"node": ">=16.0.0"
},
"types": "dist/index.d.ts",
"bugs": "https://github.com/ammarnajjar/ngrx-graph/issues"
}