forked from escaletech/tog-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.58 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tog-node",
"version": "0.4.3",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"docs": "typedoc",
"build": "tsc",
"release": "./scripts/release.sh",
"prepare": "husky install"
},
"files": [
"/lib"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ioredis": "^4.17.3",
"murmurhash-js": "^1.0.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/ioredis": "^4.16.5",
"@types/jest": "^27.4.0",
"@types/murmurhash-js": "^1.0.3",
"babel-jest": "^25.5.1",
"husky": "^8.0.1",
"jest": "^27.5.1",
"standard-version": "^9.0.0",
"typedoc": "^0.22.11",
"wait-for-expect": "^3.0.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": "\\.(spec|test)\\.ts$",
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.(t|j)s"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/migrations",
"<rootDir>/dist",
"<rootDir>/test"
],
"coverageDirectory": "<rootDir>/test/coverage",
"testEnvironment": "node"
}
}