-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "pipeline-segment",
"description": "Composable pieces of a (redis) pipeline.",
"version": "0.0.6",
"type": "module",
"main": "dist/src/index.js",
"scripts": {
"test": "nodenv -E .env --exec \"npm run test:ci\"",
"test:ci": "npm run build && mocha dist/test/{unit,integration}/**/*.js --check-leaks",
"format": "prettier --write --parser typescript \"./**/*.{ts,tsx}\"",
"format:check": "prettier --check --parser typescript \"./**/*.{ts,tsx}\"",
"lint": "echo 'TODO'",
"check-all": "FORCE_COLOR=1 NPM_CONFIG_COLOR=always run-p --aggregate-output lint format:check test",
"build": "tsc --version && tsc --pretty",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "npm run check-all && npm run build"
},
"author": "Ethan Resnick <[email protected]>",
"license": "ISC",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"files": [
"dist/"
],
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run check-all"
}
},
"dependencies": {
"@types/node": "^12.12.54"
},
"devDependencies": {
"@ethanresnick/node-env-run": "^3.0.3",
"@types/chai": "^4.2.12",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"fast-check": "^1.26.0",
"husky": "^3.1.0",
"ioredis": "^5.3.2",
"lint-staged": "^9.5.0",
"mocha": "^10.2.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"ioredis": "5.x"
}
}