-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.07 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
{
"name": "nsq-strategies",
"version": "2.1.0",
"description": "A nsq client with typical trategies in node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"prepare": "yarn run build",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "make test",
"coverage": "istanbul cover _mocha -- test/*.test.js && istanbul check-coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wiredcraft/nsq-strategies.git"
},
"keywords": [
"nsq"
],
"files": [
"dist",
"!dist/tsconfig.build.tsbuildinfo"
],
"author": "Wiredcraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wiredcraft/nsq-strategies/issues"
},
"homepage": "https://github.com/Wiredcraft/nsq-strategies#readme",
"dependencies": {
"axios": "^0.27.2",
"debug": "4.1.1",
"nsqjs": "^0.13.0",
"promise-retry": "^1.1.1",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/axios": "^0.14.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.5.1",
"@types/promise-retry": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"conventional-changelog-cli": "^2.2.2",
"coveralls": "3.0.9",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^3.1.0",
"jest": "^28.1.0",
"prettier": "^2.3.2",
"randexp": "0.5.3",
"retry": "0.12.0",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "make lint",
"pre-push": "make lint"
}
}
}