-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "binary-trees",
"version": "0.1.3",
"description": "Red-black tree and binary search tree",
"license": "MIT",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/w8r/rb-tree.git"
},
"author": {
"name": "Alexander Milevski <info@w8r.name>",
"url": "https://github.com/w8r"
},
"browserify": {},
"scripts": {
"watch": "node_modules/.bin/babel src -d lib --experimental -w",
"clean": "rimraf lib build coverage",
"lint": "eslint src",
"ci": "babel-node test/*.test.js && zuul -- test/*.test.js",
"avl": "babel -o lib/avl.js < ./node_modules/.bin/rollup src/avl.js -f umd -n avl",
"bst": "babel -o lib/bst.js < ./node_modules/.bin/rollup src/bst.js -f umd -n bst",
"rb": "babel -o lib/rb.js < ./node_modules/.bin/rollup src/rb.js -f umd -n rb",
"all": "babel -o lib/index.js < ./node_modules/.bin/rollup src/index.js -f umd -n bintrees",
"build": "npm run clean && babel --optional runtime -d build src",
"test": "babel-node node_modules/.bin/blue-tape test/*.test.js | tspec",
"test:watch": "nodemon --exec 'npm run test'",
"cover": "npm run compile && babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/blue-tape ./lib/*.js --report text-summary",
"report": "npm run compile && babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/blue-tape ./lib/*.js --report html && open ./coverage/index.html",
"coveralls": "npm run compile && babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/blue-tape ./lib/*.js --report lcovonly && cat ./coverage/lcov.info | coveralls",
"postcoveralls": "rimraf coverage",
"postpublish": "git push origin master --follow-tags",
"deploy": "git pull --rebase origin master && git push origin master",
"zuul": "babel-node test/*.test.js && zuul --local 9966 -- test/*.test.js",
"benchmark": "babel-node bench/index.js"
},
"bugs": {
"url": "https://github.com/w8r/rb-tree/issues"
},
"keywords": [
"red-black-tree",
"tree",
"bst",
"binary search tree",
"search tree",
"data structures"
],
"homepage": "https://github.com/w8r/rb-tree",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-istanbul": "0.11.0",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"blue-tape": "1.0.0",
"browserify": "^14.1.0",
"coveralls": "2.11.12",
"eslint": "3.4.0",
"eslint-config-xo": "0.15.4",
"eslint-plugin-babel": "3.3.0",
"nodemon": "^1.10.2",
"phantomjs": "^2.1.7",
"rimraf": "2.5.4",
"tap-spec": "4.1.1",
"zuul": "^3.11.0"
},
"dependencies": {
"babel-runtime": "^6.23.0"
}
}