-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.43 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
{
"name": "@vocadb/web-link-matcher",
"version": "1.0.0",
"description": "Web link matcher.",
"main": "dist/index.js",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5",
"typescript": "^4.6.4"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VocaDB/web-link-matcher.git"
},
"types": "./dist/index.d.ts",
"keywords": [],
"author": "VocaDB <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/VocaDB/web-link-matcher/issues"
},
"homepage": "https://github.com/VocaDB/web-link-matcher",
"files": [
"dist"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"modulePaths": [
"<rootDir>"
],
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"testTimeout": 20000
}
}