-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"author": "optimuspaul",
"bundleDependencies": false,
"dependencies": {
"aws-sdk": "^2.97.0",
"bluebird": "^3.5.0",
"config": "^1.26.2",
"ejs": "^2.5.7",
"iso-date-str": "^1.0.0",
"lru-cache": "^4.1.1",
"merge": "^1.2.0",
"uuid": "^3.1.0"
},
"deprecated": false,
"description": "Framework for storing graph data in dynamodb and exposing it as a graphql service using apollo-server.",
"devDependencies": {
"chai": "^4.1.2",
"dynamo-db-local": "^2.1.2",
"lodash": "^4.17.4",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"keywords": [],
"license": "MIT",
"main": "src/index.js",
"name": "@bluelines/dynamodb-graphql",
"scripts": {
"coverage": "node_modules/.bin/nyc -x src/**/**.spec.js --reporter=html npm test --timeout 30000 && cat coverage/index.html",
"test": "mocha src/**/**.spec.js --timeout 30000"
},
"version": "1.0.3",
"repository": {
"type": "git",
"url": "git+https://github.com/optimuspaul/dynamodb-graphql.git"
},
"bugs": {
"url": "https://github.com/optimuspaul/dynamodb-graphql/issues"
},
"homepage": "https://github.com/optimuspaul/dynamodb-graphql/blob/master/README.md"
}