-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.36 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
{
"name": "disjoint-set-ds",
"version": "1.0.1",
"description": "Implementation of Disjoint sets data structure.",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"test": "jest",
"cover": "jest --coverage",
"prepublishOnly": "eslint . --ext .ts",
"prepare": "npm run build",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts"
},
"keywords": [
"Disjoint sets",
"union-find",
"data structures"
],
"repository": {
"type": "git",
"url": "https://github.com/dranidis/disjoint-set-ds.git"
},
"bugs": {
"url": "https://github.com/dranidis/disjoint-set-ds/issues"
},
"author": "D Dranidis",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"/dist"
],
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}