-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "cyclic-dependencies",
"version": "1.1.1",
"description": "detect cyclic dependencies in yarn workspaces",
"homepage": "https://github.com/tkloht/cyclic-dependencies",
"keywords": ["yarn", "npm", "pnpm", "workspace", "workspaces", "cyclic", "cycle", "dependency", "dependencies", "packages", "graph", "ci", "cli", "monorepo"],
"repository": {
"type": "git",
"url": "https://github.com/tkloht/cyclic-dependencies.git"
},
"main": "src/index.js",
"files": [
"src"
],
"bin": {
"cyclic-dependencies": "bin/cyclic-dependencies.js"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"type": "module",
"author": "Tobias Kloht",
"license": "MIT",
"devDependencies": {
"jest": "^28.1.1",
"prettier": "^2.7.1"
},
"dependencies": {
"globby": "^13.1.2",
"js-yaml": "^4.1.0"
}
}