-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "serverless-plugin-for-each",
"version": "3.1.2",
"description": "Serverless plugin that adds $forEach syntax to reduce code duplication and allow creating dynamic templates",
"main": "src/index.js",
"scripts": {
"license": "d2l-license-checker",
"lint": "eslint .",
"posttest": "npm run lint && npm run license",
"test": "npm run test:unit",
"test:unit": "nyc --all mocha --config test/.mocharc.json"
},
"dependencies": {
"ajv": "^8.12.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^4.3.10",
"d2l-license-checker": "^4.2.0",
"eslint": "^8.56.0",
"eslint-config-brightspace": "^1.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.2",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"sinon": "^19.0.2"
},
"peerDependencies": {
"serverless": ">= 2.x < 4.x"
},
"engines": {
"node": ">=18.0"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"contributors": [
"Anton Bazhal <am.bazhal@gmail.com> (https://github.com/AntonBazhal)"
],
"nyc": {
"include": [
"src/**"
],
"extension": [
".js"
]
}
}