-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
65 lines (65 loc) · 1.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "serverless-mocha-plugin",
"version": "1.12.0",
"engines": {
"node": ">= 8.10.0",
"npm": ">= 5.6.0"
},
"description": "Serverless plugin for test driven development using mocha",
"author": "Mikael Puittinen (https://nordcloud.com)",
"contributors": [
"Anssi Herranen",
"Rafał Janicki",
"Eetu Tuomala"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nordcloud/serverless-mocha-plugin"
},
"keywords": [
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"mocha",
"amazon",
"amazon web services",
"serverless.com"
],
"main": "index.js",
"bin": {},
"scripts": {
"test": "nyc mocha -t 30000",
"lint": "eslint ."
},
"devDependencies": {
"babel-register": "6.26.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"nyc": "^14.1.1",
"serverless": "^1.47.0",
"serverless-webpack": "^5.3.1",
"webpack": "^4.35.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"aws-sdk": "^2.491.0",
"bluebird": "^3.5.5",
"chai": "^4.2.0",
"delayed-stream": "^1.0.0",
"ejs": "^2.6.2",
"fs-extra": "^8.1.0",
"lambda-wrapper": "^0.3.0",
"mocha": "^6.1.4",
"yaml-edit": "^0.1.3"
}
}