-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.95 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.95 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
60
61
62
63
64
65
{
"name": "loopback4-cloudfront",
"version": "0.0.1",
"description": "A loopback4 extension for AWS Cloudfront integration",
"keywords": [
"loopback-extension",
"loopback",
"AWS",
"Cloudfront"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.18"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "lb-mocha \"dist/__tests__\"",
"test:ci": "node ./node_modules/@loopback/build/bin/run-nyc lb-mocha \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha dist/__tests__/**/*.js && npm run posttest",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build",
"coverage:ci": "node ./node_modules/@loopback/build/bin/run-nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "https://github.com/mrbatista/loopback4-cloudfront.git"
},
"author": "Matteo Padovano <mrbatista@users.noreply.github.com>",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/core": "*"
},
"dependencies": {
"aws-sdk": "^2.1241.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@loopback/build": "^9.0.4",
"@loopback/core": "^4.0.4",
"@loopback/eslint-config": "^13.0.4",
"@loopback/testlab": "^5.0.4",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.11.7",
"eslint": "^8.26.0",
"source-map-support": "^0.5.21",
"typescript": "~4.8.4"
}
}