This repository is currently being migrated. It's locked while the migration is in progress.
forked from keinu/dynamodb-driver
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 KB
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": "@conformity/dynamodb-driver",
"version": "2.1.10",
"description": "Simple AWS DynamoDB driver for Node.js",
"main": "index.js",
"scripts": {
"check": "npm run lint && npm run coverage",
"coverage": "npm run test -- --coverage --silent",
"test": "jest --passWithNoTests",
"test:watch": "npm test -- --watch",
"lint": "eslint '**/*.js' --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install || true",
"pre-commit": "lint-staged",
"publish:alpha": "npm --no-git-tag-version -f version prerelease --preid=$(whoami)-alpha && npm publish --tag alpha"
},
"keywords": [
"node",
"js",
"aws",
"dynamodb",
"driver",
"wrapper"
],
"author": "Xabi Errotabehere",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.988.0",
"bluebird": "^3.7.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"aws-sdk-mock": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^6.0.0",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"mock-aws-sinon": "^1.3.2",
"prettier": "^2.4.0",
"sinon": "^4.5.0"
},
"directories": {
"test": "test"
},
"repository": "cloudconformity/dynamodb-driver",
"bugs": {
"url": "https://github.com/keinu/dynamodb-driver/issues"
},
"homepage": "https://github.com/keinu/dynamodb-driver#readme",
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"engines": {
"node": "^16",
"npm": "^8"
}
}