forked from CoorpAcademy/serverless-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 791 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
{
"name": "serverless-plugins",
"private": true,
"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.16.4",
"serverless": "^1.53.0"
},
"devDependencies": {
"@coorpacademy/eslint-plugin-coorpacademy": "^8.3.1",
"ava": "^2.4.0",
"eslint": "^5.16.0",
"nyc": "^14.1.1"
}
}