-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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": "dataloader-codegen",
"version": "0.4.4",
"description": "dataloader-codegen is an opinionated JavaScript library for automatically generating DataLoaders over a set of resources (e.g. HTTP endpoints)",
"main": "lib/index.js",
"contributors": [
"Mark Larah <[email protected]> (https://mark.larah.me)"
],
"homepage": "https://github.com/Yelp/dataloader-codegen",
"bugs": {
"url": "https://github.com/Yelp/dataloader-codegen/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/Yelp/dataloader-codegen.git"
},
"license": "MIT",
"scripts": {
"test": "jest",
"build": "babel --verbose --extensions '.ts' src -d lib",
"prepublishOnly": "make build",
"typecheck": "tsc --project tsconfig.json"
},
"bin": {
"dataloader-codegen": "./lib/index.js"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^25.1.2",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.144",
"@types/node": "^12.7.12",
"@types/object-hash": "^1.3.0",
"@types/prettier": "^1.18.3",
"@types/yargs": "^13.0.3",
"flow-bin": "^0.121.0",
"flowgen": "^1.10.0",
"jest": "^25.1.0",
"regenerator-runtime": "^0.13.3",
"tmp-promise": "^2.0.2",
"typescript": "^3.7.0-beta"
},
"dependencies": {
"@babel/preset-env": "^7.6.3",
"aggregate-error": "^3.0.1",
"ajv": "^6.11.0",
"dataloader": "^2.0.0",
"ensure-error": "^2.0.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"object-hash": "^2.0.0",
"prettier": "^1.19.1",
"yargs": "^14.2.0"
},
"files": [
"lib",
"schema.json"
],
"engines": {
"node": ">=10"
}
}