-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "@tyriar/avl-tree",
"version": "2.0.6",
"description": "An implementation of the AVL tree data structure",
"scripts": {
"build": "tsc",
"lint": "tslint --project .",
"test": "nyc -x lib/test mocha lib/test/*.test.js",
"test-report": "nyc --reporter html mocha lib/test/*.test.js",
"watch": "tsc -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/gwtw/ts-avl-tree.git"
},
"keywords": [
"computer science",
"data structure",
"tree"
],
"main": "lib/avlTree.js",
"types": "typings/avl-tree.d.ts",
"author": "Daniel Imms (http://www.growingwiththeweb.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gwtw/ts-avl-tree/issues"
},
"homepage": "https://github.com/gwtw/ts-avl-tree",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^5.1.1",
"nyc": "^11.4.1",
"tslint": "^5.9.1",
"tslint-consistent-codestyle": "^1.13.0",
"typescript": "^3.0.3"
},
"files": [
"lib/**/*.js",
"lib/**/*.js.map",
"!lib/test",
"src/*.ts",
"src/**/*.ts",
"!src/test",
"typings/*.d.ts"
]
}