-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
{
"name": "redyn",
"version": "0.0.6",
"description": "Promise-first Redis-implementation for NodeJS backed by DynamoDB",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js .",
"test": "nyc --reporter=lcov --reporter=text mocha --config ./.mocharc.json",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"repository": "https://github.com/someimportantcompany/redyn",
"bugs": "https://github.com/someimportantcompany/redyn/issues",
"homepage": "https://someimportantcompany.com/redyn",
"author": "James D <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"_moduleAliases": {
"redyn": "./"
},
"keywords": [
"amazon",
"aws",
"dynamodb",
"dynamo",
"redis",
"key-value"
],
"files": [
"*.js",
"!*.test.js",
"commands/*.js",
"!commands/*.test.js"
],
"dependencies": {
"aws-sdk": "^2.824.0",
"lodash.isplainobject": "^4.0.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"date-fns": "^2.16.1",
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-sort-requires": "^2.1.0",
"faker": "^5.1.0",
"http-assert": "^1.4.1",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21",
"mocha": "^6.2.3",
"mockdate": "^3.0.2",
"module-alias": "^2.2.2",
"ms": "^2.1.3",
"nanoid": "^3.1.20",
"nock": "^13.0.5",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"uuid": "^8.3.2",
"validator": "^13.5.2"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
}
}