forked from launchdarkly/node-server-sdk-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "ldclient-node-dynamodb-store",
"version": "1.1.4",
"description": "DynamoDB-backed feature store for the LaunchDarkly Node.js SDK",
"main": "dynamodb_feature_store.js",
"license": "Apache-2.0",
"scripts": {
"test": "jest --ci --forceExit",
"check-typescript": "node_modules/typescript/bin/tsc",
"lint": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path .eslintignore ."
},
"types": "./index.d.ts",
"devDependencies": {
"babel-core": "6.26.0",
"babel-jest": "22.4.3",
"babel-preset-env": "1.6.1",
"eslint": "5.8.0",
"eslint-formatter-pretty": "1.3.0",
"jest": "23.6.0",
"jest-junit": "5.2.0",
"ldclient-node": ">= 5.7.1",
"typescript": "3.0.1"
},
"jest": {
"rootDir": ".",
"testEnvironment": "node",
"testMatch": [
"**/*-test.js"
],
"testResultsProcessor": "jest-junit",
"transformIgnorePatterns": []
},
"dependencies": {
"aws-sdk": "2.349.0",
"node-cache": "4.2.0",
"winston": "2.4.1"
},
"peerDependencies": {
"ldclient-node": ">= 5.7.0"
},
"engines": {
"node": ">= 0.8.x"
},
"bugs": {
"url": "https://github.com/launchdarkly/node-dynamodb-store/issues"
},
"homepage": "https://github.com/launchdarkly/node-dynamodb-store"
}