forked from donmccurdy/three-pathfinding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 1.76 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
64
65
66
67
68
{
"name": "three-pathfinding",
"version": "1.1.0",
"description": "Navigation mesh toolkit for three.js, based on PatrolJS",
"author": "Don McCurdy <[email protected]>",
"contributors": [
"Don McCurdy <[email protected]>",
"Uwe Sölen Flaig <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/donmccurdy/three-pathfinding.git"
},
"main": "dist/three-pathfinding.js",
"module": "dist/three-pathfinding.module.js",
"source": "src/index.js",
"browserslist": [
"last 2 versions and > 1%",
"maintained node versions"
],
"scripts": {
"dev": "concurrently \"microbundle watch --target web --globals three=THREE --external three\" \"serve --listen 5000\"",
"docs": "documentation build src/Pathfinding.js src/PathfindingHelper.js --shallow -f md | replace-between --target README.md --token API",
"dist": "microbundle --target web --globals three=THREE --external three",
"version": "npm run dist && npm test",
"postversion": "git push && git push --tags && npm publish",
"test": "node tests/index.test.js | tap-spec",
"benchmark": "node benchmark/index.benchmark.js",
"deploy": "npm run dist && npm test && vercel --prod"
},
"keywords": [
"patrol",
"patroljs",
"patrol.js",
"three",
"three.js",
"threejs",
"pathfinding",
"aframe",
"astar",
"nav",
"navmesh",
"navigation"
],
"peerDependencies": {
"three": "0.x.x"
},
"devDependencies": {
"concurrently": "7.3.0",
"documentation": "13.2.5",
"microbundle": "0.15.0",
"replace-between": "0.0.8",
"serve": "13.0.4",
"tap-spec": "5.0.0",
"tape": "5.5.3",
"three": "0.142.0",
"uglify-js": "3.16.3"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE",
"package.json",
"package-lock.json"
]
}