-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "serverless-plugin-monorepo",
"version": "0.11.0",
"repository": "github:butterwire/serverless-plugin-monorepo",
"description": "Serverless plugin to allow use inside a JS monorepo",
"keywords": [
"serverless",
"monorepo",
"workspace",
"workspaces"
],
"author": "Martin Campbell",
"homepage": "https://github.com/Butterwire/serverless-plugin-monorepo",
"bugs": "https://github.com/Butterwire/serverless-plugin-monorepo/issues",
"license": "MPL-2.0",
"main": "lib/index.js",
"dependencies": {
"fs-extra": "^9.0.1"
},
"peerDependencies": {
"serverless": "1 || 2 || 3 || 4"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
"@types/node": "^14.14.6",
"@types/serverless": "^1.78.6",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.0",
"typescript": "^4.0.5"
},
"scripts": {
"build": "tsc",
"lint:check": "yarn eslint . --ext .ts",
"lint:format": "prettier -l 'src/**/*.ts'",
"lint": "yarn lint:format && yarn lint:check"
},
"resolutions": {
"js-yaml": "^3.13.1",
"minimist": "1.2.5"
},
"files": [
"lib/index.js",
"src/index.ts"
]
}