Skip to content

Commit f148568

Browse files
fix travis and up deps
1 parent 67a2eac commit f148568

File tree

4 files changed

+194
-696
lines changed

4 files changed

+194
-696
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ script:
1111

1212
after_success:
1313
- bash <(curl -s https://codecov.io/bash) || true
14-
- npm coveralls < coverage/lcov.info || true
15-
- npm codeclimate-test-reporter < coverage/lcov.info || true
14+
- coveralls < coverage/lcov.info || true
15+
- codeclimate-test-reporter < coverage/lcov.info || true

config.js

Lines changed: 0 additions & 80 deletions
This file was deleted.

package.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
11
{
22
"name": "aureooms-es-red-black-tree",
3+
"description": "Red-black tree library for JavaScript",
34
"version": "2.0.6",
45
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
5-
"license": "AGPL-3.0",
6-
"description": "red-black tree library for JavaScript",
7-
"keywords": [
8-
"balanced binary search tree",
9-
"bst",
10-
"data structure",
11-
"red-black tree"
12-
],
13-
"homepage": "https://aureooms.github.io/es-red-black-tree",
14-
"repository": {
15-
"type": "git",
16-
"url": "https://github.com/aureooms/es-red-black-tree"
6+
"ava": {
7+
"require": [
8+
"babel-polyfill",
9+
"babel-register"
10+
]
11+
},
12+
"babel": {
13+
"presets": [
14+
"latest"
15+
],
16+
"env": {
17+
"development": {
18+
"sourceMaps": "inline"
19+
}
20+
}
1721
},
1822
"bugs": {
1923
"url": "https://github.com/aureooms/es-red-black-tree/issues"
2024
},
21-
"scripts": {
22-
"build": "babel src -d lib",
23-
"prepublish": "npm run build",
24-
"test": "ava ./test/src",
25-
"cover": "nyc --reporter=lcov npm test"
26-
},
27-
"main": "lib/index.js",
2825
"dependencies": {
2926
"chalk": "^1.1.3"
3027
},
@@ -33,28 +30,31 @@
3330
"aureooms-js-itertools": "^3.0.0",
3431
"aureooms-js-random": "^1.0.2",
3532
"ava": "^0.16.0",
36-
"babel-cli": "^6.16.0",
33+
"babel-cli": "^6.18.0",
3734
"babel-polyfill": "^6.16.0",
3835
"babel-preset-latest": "^6.16.0",
3936
"codeclimate-test-reporter": "^0.4.0",
4037
"coveralls": "^2.11.14",
4138
"esdoc": "^0.4.8",
42-
"nyc": "^8.3.1"
39+
"nyc": "^8.4.0"
4340
},
44-
"ava": {
45-
"require": [
46-
"babel-polyfill",
47-
"babel-register"
48-
]
41+
"homepage": "https://aureooms.github.io/es-red-black-tree",
42+
"keywords": [
43+
"balanced binary search tree",
44+
"bst",
45+
"data structure",
46+
"red-black tree"
47+
],
48+
"license": "AGPL-3.0",
49+
"main": "lib/index.js",
50+
"repository": {
51+
"type": "git",
52+
"url": "https://github.com/aureooms/es-red-black-tree"
4953
},
50-
"babel": {
51-
"presets": [
52-
"latest"
53-
],
54-
"env": {
55-
"development": {
56-
"sourceMaps": "inline"
57-
}
58-
}
54+
"scripts": {
55+
"build": "babel src -d lib",
56+
"cover": "nyc --reporter=lcov npm test",
57+
"prepublish": "npm run build",
58+
"test": "ava ./test/src"
5959
}
6060
}

0 commit comments

Comments
 (0)