-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "@lifeomic/cyclone",
"version": "0.0.0",
"description": "Blow away those annoying cycles.",
"main": "index.js",
"repository": "git@github.com:lifeomic/cyclone.git",
"bin": {
"cyclone": "cli.js"
},
"author": "LifeOmic <development@lifeomic.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src && tsc --noEmit",
"test": "jest",
"build": "node build.js"
},
"devDependencies": {
"@lifeomic/eslint-config-standards": "^3.0.1",
"@lifeomic/typescript-config": "^2.0.0",
"@types/graphlib": "^2.1.9",
"@types/jest": "^29.2.0",
"@types/madge": "^5.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"graphlib": "^2.1.8",
"madge": "^6.1.0",
"zod": "^3.22.4"
}
}