forked from snyk/graphlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "@snyk/graphlib",
"description": "A directed and undirected multi-graph library",
"author": "Chris Pettitt <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"index.d.ts",
"dist/",
"lib/"
],
"keywords": [
"graph",
"algorithms"
],
"scripts": {
"prepare": "tsc",
"test": "jest",
"lint": "eslint 'lib/**/*.?s' 'test/**/*test.?s'",
"format": "prettier --write 'lib/**/*.?s' 'test/**/*.?s' '*.json' 'test/*.json' 'scripts/**/*.?s'"
},
"dependencies": {
"lodash.clone": "^4.5.0",
"lodash.filter": "^4.6.0",
"lodash.has": "^4.5.2",
"lodash.isempty": "^4.4.0",
"lodash.map": "^4.6.0",
"lodash.reduce": "^4.6.0",
"lodash.transform": "^4.6.0",
"lodash.union": "^4.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"benchmark": "^2.1.4",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.0-next.8",
"lodash": "^4.17.21",
"prettier": "^2.2.1",
"seedrandom": "^3.0.5",
"sprintf-js": "^1.1.2",
"ts-node": "^10.2.0",
"typescript": "~4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/graphlib.git"
}
}