-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "serverless-dynamodb-fixtures",
"version": "1.0.0",
"description": "Serverless plugin to load data on DynamoDB tables",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chechu/serverless-dynamodb-fixtures.git"
},
"keywords": [
"serverless framework plugin",
"serverless",
"dynamodb",
"aws"
],
"author": "chechu",
"license": "MIT",
"bugs": {
"url": "https://github.com/chechu/serverless-dynamodb-fixtures/issues"
},
"homepage": "https://github.com/chechu/serverless-dynamodb-fixtures#readme",
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"jest": "^24.5.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"*.{js,mjs}"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
]
},
"scripts": {
"test": "jest ",
"lint": "npx eslint ."
},
"dependencies": {
"aws-sdk": "^2.419.0",
"tiny-async-pool": "^1.0.4",
"uuid": "^3.3.2"
}
}