-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.06 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": "astarasync",
"version": "1.0.1",
"description": "A JavaScript A* path finding library that allows for asynchronously loading graph data.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rrainn/AStarAsync.git"
},
"bugs": {
"url": "https://github.com/rrainn/AStarAsync/issues"
},
"keywords": [
"astar",
"a star",
"a*",
"dijkstra",
"path finding",
"graph",
"traversal",
"pathfinding",
"pathfinding algorithm",
"algorithm",
"async",
"astarasync",
"asynchronous"
],
"scripts": {
"prepare": "npm run build:clean && npm run build",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"build:clean": "rimraf dist",
"test": "jest"
},
"author": "rrainn, Inc.",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"jest": "^27.4.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.2"
}
}