-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "avl-promise",
"version": "0.1.1",
"author": "André Santos <[email protected]>",
"license": "MIT",
"description": "Largely copied from avl (https://www.npmjs.com/package/avl), but with a Promise-based comparator!",
"main": "dist/avl-promise.js",
"jsnext:main": "src/index",
"module": "src/index",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/andrefs/avl-promise"
},
"scripts": {
"prebuild": "npm run lint",
"lint": "eslint src",
"build": "rollup -c build/rollup.config.umd.js && rollup -c build/rollup.config.es6.js",
"pretest": "rollup -c build/rollup.config.tests.js",
"prebenchmark": "npm run build",
"benchmark": "node bench/benchmark.js",
"start": "npm run test:watch",
"test:watch": "nodemon --watch src --watch tests --exec 'npm test'",
"test": "mocha build/tests-bundle.js",
"prepublish": "npm run build && npm test"
},
"devDependencies": {
"avl": "^1.4.2",
"benchmark": "^2.1.4",
"bintrees": "^1.0.1",
"chai": "^4.1.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"functional-red-black-tree": "^1.0.1",
"google-closure-library": "^20170626.0.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-watch": "^4.3.1",
"source-map-support": "^0.4.15",
"tern": "^0.21.0",
"chai-as-promised": "^7.1.1"
},
"keywords": [
"binary-tree",
"bst",
"avl-tree",
"avl",
"promise",
"balanced-search-tree"
],
"dependencies": {
"bluebird": "^3.5.1"
}
}