This repository was archived by the owner on Dec 1, 2022. It is now read-only.
-
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) · 2.26 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.26 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": "dynamodb-relay-graph",
"version": "0.1.3",
"description": "A graphql/relay capable graph database using dynamodb as the store",
"contributors": [
"Thomas Mitchell <channlappio@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/tmitchel2/dynamodb-relay-graph.git"
},
"main": "dist/Graph.js",
"options": {
"mocha": "--check-leaks --full-trace ./__tests__/**/*.js",
"mochasingle": "--check-leaks --full-trace ./__tests__/acceptance/AcceptanceTests.js"
},
"scripts": {
"test": "npm run lint && npm run check && npm run testonly",
"testonly": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha",
"testonlydebug": "mocha ./__tests__/**/*.js --compilers js:babel-register --require babel-polyfill --debug-brk",
"testonlysingle": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mochasingle",
"testonlysingledebug": "mocha ./__tests__/acceptance/AcceptanceTests.js --compilers js:babel-register --require babel-polyfill --inspect --debug-brk",
"lint": "eslint src",
"check": "flow check",
"check-cover": "for file in {src/*.js,src/**/*.js}; do echo $file; flow coverage $file; done",
"build": "babel src --ignore __tests__ --out-dir dist/ --source-maps && flow-copy-source -v src dist",
"cover": "babel-node ./node_modules/.bin/isparta cover --root src --report html _mocha -- $npm_package_options_mocha",
"cover:lcov": "babel-node ./node_modules/.bin/isparta cover --root src --report lcovonly _mocha -- $npm_package_options_mocha"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"aws-sdk": "^2.7.17",
"dataloader": "^1.0.0",
"graphql": "^0.8.2",
"graphql-relay": "^0.4.4",
"invariant": "^2.2.2",
"measured": "1.1.0",
"warning": "^3.0.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-polyfill": "^6.20.0",
"babel-preset-react-native": "^1.9.1",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"eslint-plugin-babel": "^4.0.0",
"flow-bin": "^0.37.4",
"flow-copy-source": "^1.1.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"sane": "^1.4.1"
}
}