-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.46 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
66
67
68
{
"name": "yaddb",
"version": "0.0.3",
"description": "Yet Another Dynamo Data Base Library",
"main": "src/yaddb.js",
"scripts": {
"dynamodb": "docker run -p 8000:8000 amazon/dynamodb-local ",
"test": "NODE_ENV=test jest",
"pretty": "prettier --write **/*.js",
"lint": "eslint . --ext .js"
},
"author": "devops@labrador.co.uk",
"license": "ISC",
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "3.0.1",
"husky": "^1.1.2",
"jest": "^24.0.0",
"lint-staged": "^8.0.4",
"npm-check-updates": "^2.14.3",
"prettier": "^1.14.3",
"eslint-plugin-jest": "^22.0.0"
},
"dependencies": {
"aws-sdk": "^2.355.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"npm run pretty",
"npm run lint",
"npm run test",
"git add"
]
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labradorcouk/yaddb.git"
},
"keywords": [
"dynamodb",
"aws",
"client",
"dynamo",
"amazon"
],
"bugs": {
"url": "https://github.com/labradorcouk/yaddb/issues"
},
"homepage": "https://github.com/labradorcouk/yaddb#readme"
}