forked from apollographql/graphql-tag
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "graphql-tag",
"version": "2.10.1",
"description": "A JavaScript template literal tag that parses GraphQL queries",
"main": "./lib/graphql-tag.umd.js",
"module": "./src/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"bundle": "rollup -c && cp src/index.js.flow lib/graphql-tag.umd.js.flow",
"test": "mocha test/graphql.js test/graphql-v0.12.js && tav --ci --compat",
"prepublish": "npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/graphql-tag.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollographql/graphql-tag/issues"
},
"homepage": "https://github.com/apollographql/graphql-tag#readme",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^4.0.2",
"graphql": "^14.0.2",
"mocha": "^3.4.1",
"rollup": "^0.45.0",
"test-all-versions": "^3.3.2"
},
"peerDependencies": {
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
}
}