-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.82 KB
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
{
"name": "@janiscommerce/api-list",
"version": "9.2.0",
"description": "A package to handle Janis List APIs",
"main": "lib/index.js",
"scripts": {
"test": "mocha --exit -R nyan --require tests/bootstrap.js --recursive tests/ --no-deprecation",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/ --no-deprecation",
"coverage": "nyc npm test",
"lint": "eslint lib/ tests/",
"prepare": "husky install",
"build-types": "tsc lib/index.js --declaration --allowJs --emitDeclarationOnly --outDir types --skipLibCheck",
"coverage-ci": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/ --no-deprecation"
},
"repository": {
"type": "git",
"url": "https://github.com/janis-commerce/api-list.git"
},
"author": "Janis",
"license": "ISC",
"homepage": "https://github.com/janis-commerce/api-list#readme",
"devDependencies": {
"@janiscommerce/model": "^8.12.0",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"husky": "^8.0.3",
"lllog": "^1.1.2",
"mocha": "^10.2.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"sinon": "^15.0.3",
"typescript": "^4.9.5"
},
"files": [
"lib/",
"types/"
],
"types": "types/index.d.ts",
"directories": {
"test": "tests"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.864.0",
"@aws-sdk/client-sqs": "^3.864.0",
"@aws-sdk/client-sts": "^3.864.0",
"@aws-sdk/lib-storage": "^3.864.0",
"@janiscommerce/api": "^8.1.0",
"@janiscommerce/lambda": "^6.3.0",
"@janiscommerce/microservice-call": "^5.1.1",
"@janiscommerce/sqs-consumer": "^1.1.0",
"@janiscommerce/superstruct": "^1.2.2",
"bson": "^6.10.4"
},
"engines": {
"node": ">=18"
}
}