-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "graphql-utilities",
"version": "0.0.14",
"description": "Utilities for GraphQL",
"author": "Miguel Oller <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bloveit/graphql-utilities.git"
},
"bugs": "https://github.com/bloveit/graphql-utilities/issues",
"keywords": [
"GraphQL"
],
"main": "lib",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"build": "babel src -d lib --ignore __tests__",
"prepublish": "npm run lint && npm run test && npm run build"
},
"peerDependencies": {
"graphql": ">=0.7.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2017": "^6.14.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.14.0",
"graphql": "^0.7.0",
"jest": "^15.1.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js",
"!src/**/__tests__/**"
],
"testEnvironment": "node",
"testRegex": "__tests__/.*-test.js$"
}
}