-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
91 lines (91 loc) · 2.05 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "splaytree",
"version": "3.1.2",
"author": "Alexander Milevski <[email protected]>",
"license": "MIT",
"description": "Fast Splay tree for Node and browser",
"main": "dist/splay.js",
"browser": "dist/splay.js",
"unpkg": "dist/splay.js",
"module": "dist/splay.esm.js",
"types": "typings/index.d.ts",
"files": [
"dist",
"typings",
"src"
],
"directories": {
"test": "test",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "https://github.com/w8r/splay-tree.git"
},
"scripts": {
"lint": "tslint --project tsconfig.json ./src/*.ts",
"build": "rollup -c && npm run types",
"types": "tsc --declaration --emitDeclarationOnly",
"prebenchmark": "npm run build",
"benchmark": "node -r reify bench/benchmark.js",
"start": "npm run test:watch",
"test:watch": "nodemon --watch index.js --watch tests --exec 'npm test'",
"test": "nyc mocha tests/**/*.test.ts",
"posttest": "nyc report --reporter=json",
"prepublishOnly": "npm run build && npm test",
"clean": "rm -rf dist coverage .nyc",
"coverage": "codecov -f coverage/*.json"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.2",
"avl": "^1.4.4",
"benchmark": "^2.1.4",
"bintrees": "^1.0.2",
"chai": "^4.2.0",
"codecov": "^3.8.3",
"mocha": "^6.2.0",
"nodemon": "^2.0.20",
"nyc": "^14.1.1",
"reify": "*",
"rollup": "*",
"rollup-plugin-typescript2": "^0.24.1",
"ts-node": "^6.1.1",
"tslib": "^1.9.3",
"tslint": "^5.14.0",
"typescript": "^2.9.2"
},
"keywords": [
"binary-tree",
"bst",
"splay-tree",
"splay",
"balanced-search-tree"
],
"mocha": {
"require": [
"ts-node/register"
]
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"tests/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {}
}