forked from prettymuchbryce/easystarjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "easystarjs",
"version": "0.4.3",
"main": "./src/easystar.js",
"typings": "./index.d.ts",
"description": "Asynchronous A* Pathfinding API",
"scripts": {
"build": "webpack && webpack --minify",
"test": "./node_modules/karma/bin/karma start ./karma.conf.js",
"benchmark": "./node_modules/karma/bin/karma start ./karma.benchmark.conf.js",
"watch": "webpack -w"
},
"keywords": [
"A*",
"pathfinding",
"grid",
"easystar"
],
"homepage": "http://www.easystarjs.com",
"repository": {
"type": "git",
"url": "git://github.com/prettymuchbryce/easystarjs.git"
},
"license": "MIT",
"author": {
"name": "Bryce Neal",
"email": "[email protected]",
"url": "http://bryce.is"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"webpack": "^1.13.0",
"jasmine-core": "^2.8.0",
"karma": "^2.0.0",
"karma-benchmark": "^0.7.1",
"karma-benchmarkjs-reporter": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4"
},
"dependencies": {
"heap": "0.2.6"
}
}