-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 985 Bytes
/
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": "splaytreejs",
"version": "1.0.5",
"main": "dist/index.js",
"browser": "dist/splaytree.min.js",
"repository": "https://github.com/sisobus/SplayTree.git",
"author": "sisobus <[email protected]>",
"license": "MIT",
"scripts": {
"test": "mocha --compilers js:@babel/register tests",
"build": "npm test && rollup -c"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-latest": "^6.24.1",
"mocha": "^5.2.0",
"rollup-plugin-eslint": "^5.0.0"
},
"dependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/register": "^7.0.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify": "^6.0.0"
},
"description": "Lightweight Splay tree javascript library for node, browser",
"keywords": [
"splaytree",
"bst",
"splay",
"lightweight",
"index",
"indexing"
]
}