-
Notifications
You must be signed in to change notification settings - Fork 515
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "dataloader",
"version": "2.2.2",
"description": "A data loading utility to reduce requests to a backend via batching and caching.",
"contributors": [
"Lee Byron <[email protected]> (http://leebyron.com/)",
"Daniel Schafer <[email protected]>",
"Nicholas Schrock <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/graphql/dataloader",
"bugs": {
"url": "https://github.com/graphql/dataloader/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/graphql/dataloader.git"
},
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "npm run lint && npm run check && npm run testonly",
"test:ci": "npm run lint && npm run check && npm run testonly -- --coverage",
"lint": "eslint .",
"check": "flow check --max-warnings 0",
"build": "babel src --ignore src/__tests__ --out-dir dist/ ; cp src/index.js dist/index.js.flow ; cp src/index.d.ts dist/",
"watch": "babel resources/watch.js | node",
"testonly": "jest src",
"prerelease": ". ./resources/prepublish.sh",
"release": "changeset publish"
},
"files": [
"index.js",
"index.js.flow",
"index.d.ts",
"README.md",
"LICENSE",
"PATENTS"
],
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.2",
"@babel/node": "7.7.0",
"@babel/preset-env": "7.7.1",
"@babel/preset-flow": "7.0.0",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.24.3",
"babel-eslint": "10.0.3",
"eslint": "6.6.0",
"eslint-plugin-prettier": "^3.4.1",
"flow-bin": "0.112.0",
"jest": "24.9.0",
"prettier": "^2.8.3",
"sane": "4.1.0"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "src/**/*.js",
"options": {
"parser": "babel-flow"
}
}
]
}
}