-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.31 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
{
"name": "graphql-type-repository",
"version": "0.0.0",
"description": "A repository for assembling GraphQL types and schemas from modules",
"main": "index.js",
"repository": {
"url": "https://github.com/jamesgorman2/graphql-type-repository",
"type": "git"
},
"bugs": "https://github.com/jamesgorman2/graphql-type-repository/issues",
"keywords": [
"GraphQL"
],
"contributors": [
"James Gorman <[email protected]>"
],
"license": "BSD-3-Clause",
"scripts": {
"flow": "flow",
"check": "flow check",
"check-cover": "flow-coverage-report -i 'src/**/*.js' -x 'src/test/**' -t html -t json -t text",
"lint": "eslint src",
"test": "npm run lint && npm run check && npm run testonly",
"testonly": "jest",
"watch": "jest --watchAll",
"coverage": "jest --coverage",
"build": "babel src --optional runtime -d dist --ignore __tests__ && 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",
"prepublish": ". ./resources/prepublish.sh",
"preversion": ". ./resources/checkgit.sh && npm test"
},
"peerDependencies": {
"graphql": "^0.8.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"chalk": "^1.1.3",
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.43.1",
"flow-coverage-report": "^0.3.0",
"graphql": "^0.9.2",
"jest": "^19.0.2",
"jest-diff": "^19.0.0",
"jest-matcher-utils": "^19.0.0",
"pretty-format": "^19.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/index.js",
"!src/**/__tests__/**"
],
"testEnvironment": "node",
"testRegex": "__tests__/.*-test.js$"
},
"dependencies": {}
}