forked from tywalch/electrodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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": "electrodb",
"version": "1.11.1",
"description": "A library to more easily create and interact with multiple entities and heretical relationships in dynamodb",
"main": "index.js",
"scripts": {
"test": "npm run test:types && npm run test:unit",
"test:unit": "LOCAL_DYNAMO_ENDPOINT=http://localhost:8000 node ./test/init.js && LOCAL_DYNAMO_ENDPOINT=http://localhost:8000 mocha -r ts-node/register ./test/**.spec.*",
"test:types": "tsd",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coverage-coveralls-local": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coverage-html-local": "nyc npm test && nyc report --reporter=html",
"build:browser": "browserify playground/browser.js -o playground/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tywalch/electrodb.git"
},
"author": "Tyler W. Walch",
"license": "ISC",
"bugs": {
"url": "https://github.com/tywalch/electrodb/issues"
},
"homepage": "https://github.com/tywalch/electrodb#readme",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.54.1",
"@aws-sdk/lib-dynamodb": "^3.54.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^15.6.0",
"@types/uuid": "^8.3.0",
"aws-sdk": "2.630.0",
"browserify": "^17.0.0",
"chai": "4.2.0",
"coveralls": "^3.1.1",
"istanbul": "0.4.5",
"jest": "25.4.0",
"mocha": "7.1.1",
"mocha-lcov-reporter": "^1.3.0",
"moment": "2.24.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.8.2",
"tsd": "^0.21.0",
"typescript": "^4.7.4",
"uuid": "7.0.1"
},
"keywords": [
"electrodb",
"dynamo",
"dynamodb",
"nosql",
"single table design",
"typescript",
"aws"
],
"tsd": {
"directory": "test"
},
"dependencies": {
"@aws-sdk/lib-dynamodb": "^3.54.1",
"jsonschema": "1.2.7"
}
}