This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "serverless-import-config-plugin",
"version": "0.1.3",
"description": "Adds possibility to import YAML files in serverless.yaml config file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "echo 'Build' && tsc",
"watch": "npm-watch",
"prepublishOnly": "npm run build"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts",
"quiet": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/KrysKruk/serverless-import-config-plugin.git"
},
"keywords": [
"serverless",
"plugins",
"lambda",
"aws",
"frontend",
"serverless.com",
"serverless.yaml"
],
"author": {
"name": "Krystian Kruk",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KrysKruk/serverless-import-config-plugin/issues"
},
"homepage": "https://github.com/KrysKruk/serverless-import-config-plugin#readme",
"devDependencies": {
"npm-watch": "^0.6.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@types/lodash.difference": "^4.5.6",
"@types/lodash.differencewith": "^4.5.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.set": "^4.3.6",
"@types/node": "^13.1.2",
"@types/resolve": "^1.14.0",
"lodash.difference": "^4.5.0",
"lodash.differencewith": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2",
"resolve": "^1.14.2"
}
}