-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "create-graphql-server-query-arguments",
"version": "0.0.15",
"description": "build query arguments",
"main": "index.js",
"repository": "https://github.com/tobkle/create-graphql-server-query-arguments",
"author": "Tobias Klemmer <[email protected]>",
"license": "MIT",
"keywords": [
"create-graphql-server",
"query",
"arguments"
],
"bugs": {
"url": "https://github.com/tobkle/create-graphql-server-query-arguments/issues"
},
"options": {
"mocha": "--require ./resources/mocha-bootload --check-leaks --full-trace src/**/__tests__/**/*-test.js"
},
"scripts": {
"test": "npm run lint && npm run check && npm run testonly",
"testonly": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha",
"t": "babel-node ./node_modules/.bin/_mocha --require ./resources/mocha-bootload",
"lint": "eslint --fix src || (printf '\\033[33mTry: \\033[7m npm run lint -- --fix \\033[0m\\n' && exit 1)",
"check": "flow check",
"check-cover": "for file in {src/*.js,src/**/*.js}; do echo $file; flow coverage $file; done",
"build": "babel src --optional runtime --ignore __tests__ --out-dir dist/ && cp package.json dist/ && npm run build-dot-flow",
"build-dot-flow": "find ./src -name '*.js' -not -path '*/__tests__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/dist\\//g'`.flow; done",
"watch": "babel-node ./resources/watch.js",
"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",
"preversion": ". ./resources/checkgit.sh && npm test",
"prepublish": ". ./resources/prepublish.sh",
"gitpublish": ". ./resources/gitpublish.sh",
"prettier": "node_modules/.bin/prettier src/**/**/*.js --write",
"esdoc": "node_modules/.bin/esdoc -c .esdoc.json",
"debug": "babel-node --inspect src/__tests__/debug",
"nodemon": "nodemon -L --watch src src/__tests__/debug --exec babel-node --inspect"
},
"homepage": "https://github.com/tobkle/create-graphql-server-query-arguments#readme",
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-syntax-async-generators": "6.13.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "^1.5.2",
"bson-objectid": "^1.1.5",
"chai": "4.1.1",
"chai-fs": "^1.0.0",
"chai-json-equal": "0.0.1",
"chai-spies-next": "^0.8.0",
"chai-string": "^1.4.0",
"chai-subset": "1.5.0",
"coveralls": "^2.13.1",
"create-graphql-server-authorization": "^0.0.42",
"cross-env": "^5.0.5",
"dataloader": "^1.3.0",
"esdoc": "^1.0.1",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "0.52.0",
"isparta": "4.0.0",
"mocha": "3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "1.11.0",
"prettier": "^1.5.3",
"sane": "2.0.0"
},
"dependencies": {
"global": "^4.3.2",
"graphql": "^0.11.2",
"iterall": "^1.1.0",
"jwt-simple": "^0.5.1",
"lodash": "4.16.4",
"lodash.clonedeep": "^4.5.0",
"lodash.includes": "^4.3.0",
"lodash.isarraylike": "^4.2.0",
"lodash.isobject": "^3.0.2",
"lodash.merge": "^4.6.0",
"mongodb": "^2.2.31",
"node-fetch": "^1.7.2"
}
}