generated from Drafteame/serverless-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
{
"name": "serverless-plugin-pkl",
"type": "module",
"version": "0.2.0",
"description": "Serverless plugin that provides a way to interact with PKL configuration",
"main": "index.js",
"scripts": {
"test": "FORCE_COLOR=0 mocha tests --recursive",
"lint": "npx eslint --fix .",
"format": "npx prettier --write .",
"precommit": "pre-commit install && pre-commit install --hook-type commit-msg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drafteame/serverless-plugin-pkl.git"
},
"keywords": [
"serverless",
"plugin",
"pkl",
"configuration",
"aws",
"s3"
],
"author": "Eduardo Aguilar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Drafteame/serverless-plugin-pkl/issues"
},
"homepage": "https://github.com/Drafteame/serverless-plugin-pkl#readme",
"devDependencies": {
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0"
},
"dependencies": {
"chalk": "^5.4.1",
"child_process": "^1.0.2",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"util": "^0.12.5"
}
}