-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.94 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.94 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
{
"name": "wingbot-dynamodb",
"version": "3.4.2",
"description": "DynamoDB storage for wingbot",
"main": "src/main.js",
"scripts": {
"postinstall": "node -e \"process.platform === 'darwin' && process.arch === 'arm64' && require('child_process').spawn('sh', ['./fixjava.sh'], { stdio: 'inherit'})\"",
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:unit": "mocha ./test/**/*.test.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:coverage": "nyc --reporter=html mocha ./test && nyc report",
"test:coverage:threshold": "nyc check-coverage --lines 80 --functions 80 --branches 68",
"test:lint": "eslint ./src/**/*.js ./bin/**/*.js ./test/**/*.js ",
"doc": "node ./bin/makeApiDoc.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wingbotai/wingbot-dynamodb.git"
},
"keywords": [
"wingbot",
"messenger",
"chatbot",
"framework",
"dynamodb"
],
"author": "wingbot.ai",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/wingbotai/wingbot-dynamodb/issues"
},
"homepage": "https://github.com/wingbotai/wingbot-dynamodb#readme",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.67.0",
"@aws-sdk/util-dynamodb": "^3.67.0",
"@aws-sdk/lib-dynamodb": "^3.67.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.29.4",
"jsdoc-to-markdown": "^8.0.0",
"local-dynamo": "^0.6.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"wingbot": "^3.30.2"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.0.0",
"@aws-sdk/util-dynamodb": "^3.0.0",
"wingbot": "^3.0.0"
},
"optionalDependencies": {
"@aws-sdk/lib-dynamodb": "^3.0.0"
}
}