generated from senecajs/seneca-user
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.96 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
69
70
71
72
73
74
75
{
"name": "@seneca/dynamo-store",
"description": "DynamoDB store for Seneca",
"version": "6.2.0",
"keywords": [
"seneca",
"dynamo",
"dynamodb",
"store",
"plugin"
],
"author": {
"name": "Richard Rodger",
"email": "[email protected]",
"url": "http://richardrodger.com/"
},
"license": "MIT",
"main": "dynamo-store.js",
"scripts": {
"test-docker": "docker run -d -p 18000:8000 amazon/dynamodb-local",
"test-create-db": "SENECA_DYNAMO_ENDPOINT=http://localhost:18000 node ./test/support/db/create-test-tables.js",
"test-delete-db": "SENECA_DYNAMO_ENDPOINT=http://localhost:18000 node ./test/support/db/delete-test-tables.js",
"test-list-tables": "SENECA_DYNAMO_ENDPOINT=http://localhost:18000 node ./test/support/db/list-test-tables.js",
"test": "SENECA_DYNAMO_ENDPOINT=http://localhost:18000 lab -l -v -L -t 50 -P '\\.test' test -r console -o stdout -r html -o test/coverage.html -I AggregateError,atob,btoa,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance",
"test-some": "SENECA_DYNAMO_ENDPOINT=http://localhost:18000 lab -v -L -P '\\.test' test -r console -g ",
"test-msgs": "lab -t 50 -P messages.test -r console -o stdout -r html -o test/coverage.html",
"doc": "seneca-doc",
"coveralls": "lab -s -P test -r lcov | coveralls",
"prettier": "prettier --write --no-semi --single-quote *.js test/*.js",
"reset": "npm run clean && npm i && npm test",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish-quick": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org",
"repo-publish": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run repo-publish-quick"
},
"files": [
"LICENSE",
"README.md",
"dynamo-store.js",
"dynamo-store-docs.js",
"lib"
],
"contributors": [
"https://github.com/lilsweetcaligula",
"Aleksandar Milenkovic - https://github.com/BeAllAround"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.474.0",
"@aws-sdk/util-dynamodb": "^3.474.0",
"coveralls": "3.1.1",
"prettier": "3.3.1",
"seneca": "3.33.0",
"seneca-doc": "2.1.3",
"seneca-entity": "25.1.0",
"seneca-joi": "7.0.2",
"seneca-msg-test": "4.1.0",
"seneca-plugin-validator": "0.6.1",
"seneca-promisify": "3.7.1",
"seneca-store-test": "5.2.0"
},
"peerDependencies": {
"seneca": ">=3||>=4.0.0-rc2",
"seneca-entity": ">=26",
"seneca-promisify": ">=3",
"@aws-sdk/client-dynamodb": ">=3",
"@aws-sdk/util-dynamodb": ">=3"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-dynamo-store.git"
}
}