-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.71 KB
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
{
"name": "find-cycle",
"version": "0.0.0-development",
"description": "find and identify a cycle in a directed graph",
"author": "Andy Edwards",
"license": "MIT",
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/find-cycle.git"
},
"keywords": [
"cycle",
"cycles",
"cyclic",
"graph",
"graphs",
"directed",
"directed-graph",
"directed-graphs",
"find",
"finder",
"search",
"detect",
"detector",
"detection"
],
"bugs": {
"url": "https://github.com/jcoreio/find-cycle/issues"
},
"homepage": "https://github.com/jcoreio/find-cycle#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@jcoreio/toolchain": "^3.2.0",
"@jcoreio/toolchain-circle": "^3.2.0",
"@jcoreio/toolchain-flow": "^3.2.0",
"@jcoreio/toolchain-mocha": "^3.2.0",
"@jcoreio/toolchain-semantic-release": "^3.2.0",
"@jcoreio/toolchain-typescript": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-plugin-flowtype": "^8.0.3",
"flow-bin": "^0.125.1",
"mocha": "^10.2.0",
"typescript": "^5.1.0"
},
"exports": {
"./package.json": "./package.json",
"./*": {
"types": "./*.d.ts",
"default": "./*.js"
}
},
"sideEffects": false,
"packageManager": "pnpm@8.3.1"
}