-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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": "bfs-as-promised",
"version": "1.0.4",
"description": "Breadth-first search (BFS) using promise (Bluebird)",
"main": "lib/bfs.js",
"keywords": [
"bfs",
"breadth first search",
"bluebird",
"promise"
],
"repository": {
"type": "git",
"url": "https://github.com/OronNadiv/bfs-as-promised.git"
},
"homepage": "https://github.com/OronNadiv/bfs-as-promised",
"bugs": {
"url": "https://github.com/OronNadiv/bfs-as-promised/issues"
},
"author": {
"name": "Oron Nadiv",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"compile": "babel src --out-dir lib --source-maps --minified",
"test-coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"cover": "istanbul cover _mocha --include-all-sources -x **/lib/**",
"lint": "eslint src test",
"test": "mocha && npm run lint"
},
"devDependencies": {
"babel-cli": "^6",
"babel-preset-es2015": "^6",
"coveralls": "^2",
"eslint": "^3",
"eslint-config-standard": "^5",
"eslint-plugin-promise": "^2",
"eslint-plugin-standard": "^2",
"istanbul": "^0.4",
"mocha": "^2",
"should": "^9"
},
"dependencies": {
"bluebird": "^3"
}
}