forked from donmccurdy/three-pathfinding
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.43 KB
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
{
"name": "three-pathfinding",
"version": "0.10.0",
"description": "Navigation mesh toolkit for three.js, based on PatrolJS",
"author": "Don McCurdy <dm@donmccurdy.com>",
"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",
"scripts": {
"dev": "concurrently \"microbundle watch --target browser\" \"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 browser",
"version": "npm run dist && npm test && git add -A dist",
"postversion": "git push && git push --tags && npm publish",
"test": "node tests/index.test.js",
"benchmark": "node benchmark/index.benchmark.js",
"deploy": "npm run dist && npm test && now --static && now alias"
},
"now": {
"alias": "three-pathfinding.donmccurdy.com",
"public": true
},
"keywords": [
"patrol",
"patroljs",
"patrol.js",
"three",
"three.js",
"threejs",
"pathfinding",
"aframe",
"astar",
"nav",
"navmesh",
"navigation"
],
"devDependencies": {
"concurrently": "^3.6.0",
"documentation": "^5.3.3",
"microbundle": "^0.5.1",
"replace-between": "0.0.8",
"serve": "^9.2.0",
"tape": "^4.9.1",
"three": "^0.96.0",
"uglify-js": "^3.3.3"
}
}