-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"name": "unionfind-typescript",
"version": "1.1.2",
"description": "UnionFind that accepts any data use TypeScript",
"main": "dist/index.js",
"scripts": {
"build-tsc": "tsc",
"mocha-test": "nyc mocha ./test/*.js --reporter=json > coverage/coverage.json",
"test": "npm run build-tsc && npm run mocha-test && nyc report --reporter=text-lcov > coverage/coverage.lcov",
"doc": "typedoc --out ./docs ./src --readme README.MD && cd docs && cd .>.nojekyll"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"contributors": [
{
"name": "ihet",
"email": "ihetqxl@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ihet/unionfind-typescript"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.2.0",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.26",
"typescript": "^3.2.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}