-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.65 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
56
57
58
59
60
61
62
63
{
"name": "nav2d",
"version": "1.4.0",
"description": "2d navigation meshes with pathfinding and funneling",
"repository": "https://github.com/frapa/nav2d",
"homepage": "https://frapa.github.io/nav2d/",
"main": "dist/nav2d.min.js",
"unpkg": "dist/nav2d.min.js",
"module": "src/nav2d.js",
"types": "src/index.d.ts",
"type": "module",
"keywords": [
"navigation mesh",
"nav",
"mesh",
"navmesh",
"navigation",
"polygons",
"polygonal navigation mesh",
"pathfinding",
"path finding",
"astar",
"funnel",
"AI"
],
"scripts": {
"build": "webpack && webpack --config webpack_deps.config.cjs",
"prepublish": "npm test && npm run build",
"test": "npm run lint && nyc ava --verbose",
"lint": "eslint src",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"ava": "^5.3.1",
"babel-loader": "^8.1.0",
"codecov": "^3.7.2",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"author": "Francesco Pasa",
"license": "MIT",
"dependencies": {
"earcut": "^2.2.2",
"point-in-polygon": "^1.0.1",
"simple-quadtree": "^0.1.3",
"tinyqueue": "^2.0.3",
"uuid": "^8.3.0"
},
"ava": {
"require": [
"esm"
]
},
"prettier": {
"tabWidth": 4,
"trailingComma": "es5"
}
}