forked from CoorpAcademy/serverless-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 888 Bytes
/
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
{
"name": "serverless-plugins",
"private": true,
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/*",
"tests/*"
],
"scripts": {
"eslint": "eslint .",
"ava": "ava",
"nyc": "nyc ava",
"ava:profile": "node node_modules/ava/profile.js",
"pretest:unit": "docker-compose up -d",
"test:unit": "npm run nyc",
"posttest:unit": "docker-compose stop",
"test:integration": "lerna run test --stream --scope serverless-offline-plugins-integration",
"test": "npm run eslint && npm run test:unit && npm run test:integration",
"publish": "lerna publish"
},
"dependencies": {
"lerna": "^7.4.2",
"serverless": "^3.36.0"
},
"devDependencies": {
"@coorpacademy/eslint-plugin-coorpacademy": "^11.0.0",
"ava": "^4.3.3",
"eslint": "^8.25.0",
"eslint-plugin-lodash-fp": "^2.1.3",
"nyc": "^15.1.0"
}
}