-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.59 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@boostercloud/rocket-static-sites-aws-infrastructure",
"version": "1.0.2",
"description": "Booster rocket to deploy static sites to Booster applications in AWS.",
"keywords": [
"Booster",
"plugin",
"aws",
"static-sites"
],
"author": "Booster Cloud",
"homepage": "https://booster.cloud",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/boostercloud/rocket-static-sites-aws-infrastructure.git"
},
"dependencies": {
"@aws-cdk/aws-cloudfront": "1.91.0",
"@aws-cdk/aws-s3": "1.91.0",
"@aws-cdk/aws-s3-deployment": "1.91.0",
"@aws-cdk/core": "1.91.0",
"@boostercloud/framework-types": "0.20.2"
},
"scripts": {
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"compile": "tsc -b tsconfig.json",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"prepack": "tsc -b tsconfig.json",
"test:rocket-static-sites-aws-infrastructure": "npm run test",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"integration": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"bugs": {
"url": "https://github.com/boostercloud/booster/issues"
},
"devDependencies": {
"@boostercloud/framework-provider-aws-infrastructure": "0.20.2",
"@types/faker": "5.1.5",
"@types/mocha": "^5.2.7",
"@types/node": "14.14.20",
"@types/sinon": "^9.0.10",
"metadata-booster": "0.3.1",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.10",
"aws-cdk": "1.91.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.2",
"faker": "5.1.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"sinon": "9.2.3",
"sinon-chai": "3.5.0",
"velocityjs": "^2.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"tslib": "2.1.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}