-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "@janiscommerce/microservice-call",
"version": "5.1.1",
"description": "Allows communication between services.",
"main": "lib/microservice-call.js",
"directories": {
"test": "test"
},
"files": [
"lib/",
"types/"
],
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"test-ci": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/",
"coverage": "nyc npm test",
"lint": "eslint lib/ tests/",
"prepare": "husky install",
"build-types": "tsc lib/microservice-call.js --declaration --allowJs --emitDeclarationOnly --outDir types --skipLibCheck true"
},
"repository": {
"type": "git",
"url": "https://github.com/janis-commerce/microservice-call.git"
},
"author": "Janis",
"license": "ISC",
"homepage": "https://github.com/janis-commerce/microservice-call#readme",
"dependencies": {
"@janiscommerce/aws-secrets-manager": "^1.1.0",
"@janiscommerce/lambda": "^6.0.5",
"axios": "^0.24.0",
"qa": "0.0.1",
"qs": "^6.11.2"
},
"devDependencies": {
"@types/node": "^18.17.18",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^7.0.4",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"nyc": "^15.1.0",
"sinon": "^15.2.0",
"typescript": "^4.9.5"
},
"types": "types/microservice-call.d.ts"
}