|
1 | 1 | {
|
2 | 2 | "name": "aureooms-es-red-black-tree",
|
| 3 | + "description": "Red-black tree library for JavaScript", |
3 | 4 | "version": "2.0.6",
|
4 | 5 | "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 | + } |
17 | 21 | },
|
18 | 22 | "bugs": {
|
19 | 23 | "url": "https://github.com/aureooms/es-red-black-tree/issues"
|
20 | 24 | },
|
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", |
28 | 25 | "dependencies": {
|
29 | 26 | "chalk": "^1.1.3"
|
30 | 27 | },
|
|
33 | 30 | "aureooms-js-itertools": "^3.0.0",
|
34 | 31 | "aureooms-js-random": "^1.0.2",
|
35 | 32 | "ava": "^0.16.0",
|
36 |
| - "babel-cli": "^6.16.0", |
| 33 | + "babel-cli": "^6.18.0", |
37 | 34 | "babel-polyfill": "^6.16.0",
|
38 | 35 | "babel-preset-latest": "^6.16.0",
|
39 | 36 | "codeclimate-test-reporter": "^0.4.0",
|
40 | 37 | "coveralls": "^2.11.14",
|
41 | 38 | "esdoc": "^0.4.8",
|
42 |
| - "nyc": "^8.3.1" |
| 39 | + "nyc": "^8.4.0" |
43 | 40 | },
|
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" |
49 | 53 | },
|
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" |
59 | 59 | }
|
60 | 60 | }
|
0 commit comments