-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "graphql-tag",
"version": "2.12.6",
"description": "A JavaScript template literal tag that parses GraphQL queries",
"main": "./main.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc && rollup -c && npm run flow",
"flow": "cp src/index.js.flow lib/graphql-tag.umd.js.flow",
"test": "npm run test:ts3 && npm run test:ts4",
"test:ts3": "npm i [email protected] [email protected] && npm run test:mocha",
"test:ts4": "npm i [email protected] [email protected] && npm run test:mocha",
"test:mocha": "npm run build && mocha lib/tests.cjs.js",
"prepublish": "npm run build"
},
"files": [
"lib/",
"src/",
"loader.js",
"main.js"
],
"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": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^18.0.6",
"chai": "^4.2.0",
"graphql": "^16.0.1",
"mocha": "^9.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"source-map-support": "^0.5.19",
"test-all-versions": "^5.0.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"engines": {
"node": ">=10"
}
}