-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "disjoint",
"version": "2.0.0",
"description": "Implementation of a disjoint set data structure",
"author": {
"name": "Nick Watts",
"email": "nick@nawatts.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nawatts/disjoint.git"
},
"homepage": "https://github.com/nawatts/disjoint",
"bugs": "https://github.com/nawatts/disjoint/issues",
"keywords": [
"disjoint-set",
"union-find",
"data-structure",
"algorithm"
],
"files": [
"lib"
],
"main": "lib/disjoint.js",
"scripts": {
"build": "tsc",
"prebuild": "rm -rf lib",
"test": "mocha -r ts-node/register disjoint.spec.ts",
"prepack": "npm run build",
"docs:build": "typedoc --readme README.md --mode file --excludePrivate --out ./docs",
"docs:push": "gh-pages -d docs",
"docs:serve": "serve docs",
"lint": "eslint *.ts && prettier --check *.ts"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"gh-pages": "^0.11.0",
"mocha": "^8.1.1",
"prettier": "2.0.5",
"serve": "^11.3.2",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
}
}