forked from mikewesthad/navmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.88 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "phaser-navmesh",
"version": "1.1.1",
"description": "A plugin for Phaser for fast pathfinding using navigation meshes",
"main": "dist/phaser-navmesh.min.js",
"scripts": {
"build:library": "webpack --config config/webpack.config.library.js",
"build:examples": "webpack --config config/webpack.config.examples.js",
"build:all": "concurrently \"npm run build:library\" \"npm run build:examples\"",
"watch:library": "webpack --watch --config config/webpack.config.library.js",
"watch:examples": "webpack --watch --config config/webpack.config.examples.js",
"watch:all": "concurrently \"npm run watch:library\" \"npm run watch:examples\"",
"serve": "browser-sync start --config \"config/browser-sync.config.js\"",
"dev": "concurrently \"npm run watch:all\" \"npm run serve\"",
"clean:builds": "rimraf dist public",
"clean:docs": "rimraf docs",
"clean:all": "concurrently \"npm run clean:builds\" \"npm run clean:docs\"",
"doc": "esdoc -c config/esdoc.json",
"postdoc": "cp -r doc-source/ docs/ && cp -r doc-source/ docs/manual/",
"deploy:examples": "gh-pages --branch gh-pages --dist public",
"predeploy:examples": "npm run \"build:examples\"",
"deploy:doc": "gh-pages --branch gh-pages --dist docs --dest docs",
"predeploy:doc": "npm run doc",
"prettier": "prettier --write ./src/**/*.{js,jsx,json}",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"./src/**/*.js": [
"prettier --write",
"git add"
]
},
"files": [
"dist/",
"src/library/"
],
"browserify": {
"transform": [
[
"babelify",
{
"only": "src/**/*"
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikewesthad/phaser-navmesh-plugin.git"
},
"keywords": [
"path finding",
"navigation mesh",
"phaser",
"a*"
],
"author": "Michael Hadley",
"contributors": [
"Rex Twedt"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mikewesthad/phaser-navmesh-plugin/issues"
},
"homepage": "https://github.com/mikewesthad/phaser-navmesh-plugin#readme",
"dependencies": {
"javascript-astar": "github:mikewesthad/javascript-astar"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-jest": "^21.0.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.2",
"browser-sync": "^2.18.12",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^4.0.1",
"easystarjs": "^0.4.1",
"esdoc": "^0.5.2",
"eslint": "^4.6.1",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-prettier": "^2.2.0",
"expose-loader": "^0.7.3",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.1.3",
"phaser-ce": "^2.8.0",
"prettier": "^1.6.1",
"rimraf": "^2.6.1",
"webpack": "^2.6.1"
},
"prettier": {
"printWidth": 100
}
}