-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 1.98 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
75
76
77
{
"name": "carrotstiqs",
"version": "1.0.0",
"description": "A declarative API for asynchronous messaging with RabbitMQ",
"main": "dist/index.js",
"engines": {
"node": ">=10",
"yarn": ">=1.2"
},
"scripts": {
"build": "rm -rf dist && babel src --copy-files --out-dir dist && flow-copy-source src/ dist/",
"test": "jest --coverage --no-cache --runInBand --verbose --detectOpenHandles",
"benchmark": "yarn build && node ./benchmarks/index.js",
"flow": "flow",
"lint": "eslint src test",
"report-coverage": "yarn run coveralls -v",
"wipeRabbitMQ": "node wipeRabbitMQ.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Nathan-Schwartz/CarrotStiqs.git"
},
"dependencies": {
"amqp-connection-manager": "^3.2.0",
"amqplib": "^0.7.1",
"es6-error": "^4.1.1",
"lodash.curry": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"benchmarkify": "^2.1.2",
"coveralls": "^3.0.11",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"flow-bin": "^0.150.0",
"flow-copy-source": "^2.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"clearMocks": true,
"setupFilesAfterEnv": [
"./test/jest.setup.js"
],
"coverageDirectory": "./coverage",
"testURL": "http://localhost/",
"collectCoverageFrom": [
"src/**"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/benchmarks/",
"/test/"
]
}
}