forked from CoorpAcademy/serverless-plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 831 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
{
"name": "serverless-plugins",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"postinstall": "lerna bootstrap",
"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": "^3.22.1",
"serverless": "^1.83.0"
},
"devDependencies": {
"@coorpacademy/eslint-plugin-coorpacademy": "^10.2.0",
"ava": "^3.12.1",
"eslint": "^7.9.0",
"nyc": "^15.1.0"
}
}