-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
74 lines (74 loc) · 1.72 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
65
66
67
68
69
70
71
72
73
74
{
"name": "redisk",
"version": "2.1.7",
"description": "TypeScript ORM for Redis.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.build.json && cpx 'src/lua/*.lua' dist/lua",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "jest --no-cache --runInBand",
"changelog": "auto-changelog -p"
},
"dependencies": {
"bluebird": "^3.7.2",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArkerLabs/redisk.git"
},
"keywords": [
"typescript",
"redis",
"redisk",
"ts",
"orm"
],
"author": "ArkerLabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArkerLabs/redisk/issues"
},
"homepage": "https://github.com/ArkerLabs/redisk#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^24.9.1",
"@types/node": "^13.9.0",
"auto-changelog": "^1.16.4",
"cpx": "^1.5.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"ts-jest": "^25.3.0",
"typescript": "^3.7.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"verbose": true
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}