-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "nx-mermaid-grapher",
"version": "1.1.0",
"description": "Create MermaidJS graphs from NX dependency graphs",
"main": "dist/cli.js",
"files": [
"dist/*"
],
"bin": {
"nx-mermaid-grapher": "./dist/cli.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build --sourcemap",
"test": "jest",
"test:watch": "npm run test -- --watch",
"lint": "eslint lib/** --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check lib/**/*.js",
"mutate": "stryker run",
"prebuild": "rm -fr dist",
"dev": "ts-node lib/cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fcmam5/nx-mermaid-grapher.git"
},
"author": "Abdeldjalil Fortas (Fcmam5)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fcmam5/nx-mermaid-grapher/issues"
},
"homepage": "https://github.com/Fcmam5/nx-mermaid-grapher#readme",
"devDependencies": {
"@stryker-mutator/core": "^7.1.1",
"@stryker-mutator/jest-runner": "^7.1.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^3.0.1",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"class-transformer": "^0.5.1",
"yargs": "^17.7.2"
}
}