-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 834 Bytes
/
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
{
"name": "graphql-merge",
"version": "0.0.1",
"description": "Utility to merge GraphQL queries",
"main": "src/index.js",
"repository": "https://github.com/alexanderchr/graphql-merge",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "ava **/*.test.js --require babel-register",
"test:watch": "npm run test -- --watch"
},
"author": "Alexander Christiansson",
"license": "MIT",
"devDependencies": {
"ava": "^0.16.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.8.1"
},
"dependencies": {
"graphql": "^0.6.2",
"lodash.differencewith": "^4.4.0"
}
}