forked from donmccurdy/three-pathfinding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.16 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
{
"name": "three-pathfinding",
"version": "0.5.5",
"description": "Navigation mesh toolkit for three.js, based on PatrolJS",
"main": "dist/three-pathfinding.js",
"scripts": {
"dev": "budo browser.js:bundle.js --live",
"docs": "documentation build src/index.js --shallow -f md | replace-between --target README.md --token API",
"dist": "browserify browser.js -o dist/three-pathfinding.js && uglifyjs dist/three-pathfinding.js --mangle > dist/three-pathfinding.min.js",
"version": "npm run dist && git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"patrol",
"patroljs",
"patrol.js",
"three",
"three.js",
"threejs",
"pathfinding",
"aframe",
"astar",
"nav",
"navmesh",
"navigation"
],
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^14.4.0",
"budo": "^10.0.4",
"documentation": "^5.3.3",
"replace-between": "0.0.8",
"uglify-js": "^3.3.3"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
]
]
}
}