-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "armillary",
"version": "0.1.3",
"description": "Some pathfinding algorithm implementations",
"license": "Apache-2.0",
"main": "lib/index.js",
"browser": "lib/index.js",
"homepage": "https://github.com/pauldijou/armillary",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/pauldijou/armillary/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pauldijou/armillary.git"
},
"author": {
"email": "[email protected]",
"name": "Paul Dijou",
"url": "http://pauldijou.fr"
},
"keywords": [
"pathfinding",
"astar",
"dijkstra"
],
"dependencies": {
"heapster": "^0.2.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"jasmine": "^2.4.1"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build",
"test": "jasmine JASMINE_CONFIG_PATH=test/jasmine.json"
}
}