-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "@aligent/cdk-constructs",
"version": "0.0.1",
"private": true,
"description": "A collection of CDK constructs",
"workspaces": {
"packages": [
"packages/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/aligent/aws-cdk-constructs.git"
},
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/aligent/aws-cdk-constructs/issues"
},
"homepage": "https://github.com/aligent/aws-cdk-constructs#readme",
"scripts": {
"build": "tsc",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"lint:check": "npm run lint",
"lint:fix": "npm run lint --fix",
"format": "prettier --ignore-path .prettierignore --check \"**/*.+(js|ts|json)\"",
"format:check": "npm run format",
"format:fix": "prettier --ignore-path .prettierignore --write \"**/*.+(js|ts|json)\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.55.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
}
}