-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "path-from-image",
"version": "0.0.4",
"description": "Try to find the shortest path between two points of an image, following pixels matching a given colors pattern. Usefull to find the shortest path between two locations on a map, by following roads.",
"main": "dist/PathFromImage.js",
"scripts": {
"build": "./node_modules/.bin/eslint ./src/ && node_modules/.bin/babel src -d dist",
"test": "npm run build && ./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olivierlando/path-from-image.git"
},
"keywords": [
"dijkstra",
"road",
"path",
"shortestpath"
],
"author": "Olivier Lando",
"license": "MIT",
"bugs": {
"url": "https://github.com/olivierlando/path-from-image/issues"
},
"homepage": "https://github.com/olivierlando/path-from-image#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.0"
},
"dependencies": {
"jpeg-js": "^0.3.3",
"node-dijkstra": "^2.5.0",
"simplify-js": "^1.2.1",
"zhang-suen": "0.0.4"
}
}