-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.27 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
{
"name": "jkstra",
"version": "0.1.1",
"description": "Small JavaScript graph routing library",
"author": "Benjamin Becquet",
"repository": "bbecquet/jkstra",
"keywords": [
"graph",
"routing",
"pathfinding",
"Dijkstra"
],
"main": "dist/jkstra.js",
"scripts": {
"demo": "babel ./demo/src/ --out-dir ./demo",
"babel": "babel ./src/ --out-dir ./dist --source-maps",
"browserify": "browserify ./dist/jkstra.js -o ./build/jkstra.js --standalone jkstra",
"build": "npm run babel && npm run browserify",
"test": "mocha --compilers js:babel-register tests"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports",
"transform-class-properties",
"transform-object-assign"
]
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"eslint": "^2.7.0"
},
"directories": {
"test": "test"
},
"license": "MIT",
"dependencies": {
"updatable-priority-queue": "0.0.1"
}
}