-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.19 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
55
{
"version": "0.2.5",
"scripts": {
"format": "xo --fix",
"test": "jest src && yarn format && yarn run test-coverage",
"test-coverage": "jest src --coverage",
"prepublishOnly": "yarn test && tsc",
"build": "tsc"
},
"license": "MIT",
"description": "An a* solver",
"repository": "https://github.com/craigdallimore/a-star",
"bugs": {
"url": "https://github.com/craigdallimore/a-star/issues",
"email": "[email protected]"
},
"keywords": [
"a-star",
"path",
"pathfinding",
"algorithm"
],
"files": [
"dist"
],
"name": "@decoy9697/a-star",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"xo": {
"prettier": true,
"rules": {
"func-names": "off",
"import/extensions": "off",
"unicorn/prefer-module": "off"
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false
},
"dependencies": {
"@decoy9697/priority-queue": "^1.0.1",
"fast-check": "^2.24.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"xo": "^0.48.0"
}
}