-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.8 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
{
"name": "graphql-relay-tools",
"version": "0.1.1",
"description": "A library that allows the easy creation of Relay compliant servers using the GraphQL type language.",
"main": "dist/index.js",
"homepage": "https://github.com/excitement-engineer/graphql-relay-tools",
"repository": {
"type": "git",
"url": "https://github.com/excitement-engineer/graphql-relay-tools.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "babel src --ignore __tests__,*.test.js --out-dir dist/ && npm run build-dot-flow",
"build-dot-flow": "find ./src -name '*.js' -not -path '*/__tests__*' -not -name '*.test.js' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/dist\\//g'`.flow; done",
"prepublish": ". ./resources/prepublish.sh",
"testonly": "jest",
"flow": "flow check",
"lint": "eslint src",
"coverage": "codecov",
"prettier": "prettier './src/**/*.js' --write",
"test": "npm run flow && npm run lint && npm run testonly"
},
"author": "Dirk-Jan Rutten <[email protected]>",
"license": "MIT",
"peerDependencies": {
"graphql": "^0.5.0 || ^0.6.0 || ^0.7.0 || ^0.8.0-b || ^0.9.0 || ^0.10.0 || ^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^21.2.1",
"flow-bin": "^0.56.0",
"graphql": "^0.11.7",
"graphql-tools": "^2.1.0",
"prettier": "^1.7.4"
},
"dependencies": {
"graphql-relay": "^0.5.3"
}
}