forked from serverless/aws-event-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 914 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
35
36
37
38
{
"name": "aws-event-mocks",
"version": "0.0.0",
"engines": {
"node": ">=4.0"
},
"description": "AWS Event mocks like SNS, S3, ect.",
"author": "serverless.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TODO"
},
"keywords": [
"serverless",
"serverless framework"
],
"main": "lib/index.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha tests/index -- -R spec --recursive",
"lint": "eslint ."
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.1",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"lodash": "^4.13.1"
}
}