-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "red-black-tree-js",
"version": "1.2.2",
"description": "A javascript implementation of red-black-tree",
"main": "dist/rbTree.min.js",
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"lint": "./node_modules/.bin/eslint src/rbTree.js",
"test": "jest",
"coveralls": "node --harmony_proxies node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liubinyi/red-black-tree-js.git"
},
"keywords": [],
"author": "Binyi Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liubinyi/red-black-tree-js/issues"
},
"homepage": "https://github.com/liubinyi/red-black-tree-js#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-preset-es2015": "^6.24.0",
"coveralls": "^2.12.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"webpack": "^2.1.0-beta.22"
}
}