-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "serverless-jest-plugin",
"version": "0.4.0",
"description": "Serverless plugin for test driven development using Jest",
"main": "index.js",
"author": "Nordcloud (https://nordcloud.com)",
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nordcloud/serverless-jest-plugin.git"
},
"dependencies": {
"bluebird": "^3.5.2",
"ejs": "^2.6.1",
"fs-extra": "^3.0.0",
"jest": "^24.5.0",
"lambda-wrapper": "^0.3.0",
"yaml-edit": "^0.1.3"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nordcloud/serverless-jest-plugin/issues"
},
"homepage": "https://github.com/nordcloud/serverless-jest-plugin#readme",
"devDependencies": {
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"serverless": "^1.32.0",
"strip-ansi": "^6.0.0"
}
}