-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "node-dijkstra",
"version": "2.5.0",
"description": "A NodeJS implementation of Dijkstra's algorithm",
"author": "Alberto Restifo <[email protected]>",
"main": "libs/Graph.js",
"repository": {
"type": "git",
"url": "https://github.com/albertorestifo/node-dijkstra"
},
"scripts": {
"test": "eslint . && nyc --reporter=html mocha -t 5000",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"compile": "gulp build"
},
"bugs": {
"url": "https://github.com/albertorestifo/node-dijkstra/issues"
},
"keywords": [
"dijkstra",
"shortest path"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"browserify": "^17.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"mocha": "^10.2.0",
"must": "^0.13.4",
"nyc": "^15.1.0",
"sinon": "^15.0.0",
"vinyl-source-stream": "^2.0.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}