-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 1.91 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
76
77
78
79
80
{
"name": "@bustle/dynamo-graph",
"description": "Low-level graph database operations implemented in DynamoDB.",
"version": "1.0.1",
"main": "lib/index.js",
"scripts": {
"compile": "NODE_ENV=production babel -d lib/ src/",
"flow": "flow && npm run flow:check",
"flow:check": "flow check",
"flow:stop": "flow stop",
"test": "ava test",
"dev": "ava test --watch",
"prepublish": "npm run compile"
},
"author": "James Yu",
"license": "MIT",
"bugs": {
"url": "https://github.com/bustlelabs/dynamo-graph/issues"
},
"homepage": "https://github.com/bustlelabs/dynamo-graph#readme",
"dependencies": {
"aws-sdk": "^2.4.10",
"babel-runtime": "^6.11.6",
"bluebird": "^3.4.1",
"dataloader": "^1.2.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.11.4",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-transform-async-to-bluebird": "^1.0.0",
"babel-plugin-transform-flow-comments": "^6.17.0",
"babel-plugin-transform-promise-to-bluebird": "^1.1.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-async-to-bluebird": "^1.1.0",
"babel-preset-bluebird": "^1.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"flow-bin": "^0.33.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bustlelabs/dynamo-graph.git"
},
"keywords": [
"dynamo",
"dynamodb",
"graph",
"graphdb",
"database",
"aws"
],
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015",
"stage-0",
"async-to-bluebird"
],
"plugins": [
[
"module-alias",
[
{
"src": "./src",
"expose": "dynamo-graph"
}
]
],
"transform-runtime",
"transform-flow-comments"
]
}
}