-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/parser": "^7.3.2",
"babel-literal-to-ast": "^2.1.0",
"debug": "^4.1.1"
},
"description": "Compiles GraphQL tagged template strings using graphql-tag",
"devDependencies": {
"@apollo/client": "^3.1.0",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/helper-transform-fixture-test-runner": "^7.1.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-canonical": "^21.0.2",
"flow-bin": "^0.93.0",
"graphql": "^14.3.0",
"graphql-tag": "^2.10.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"semantic-release": "^17.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"main": "dist/index.js",
"name": "babel-plugin-graphql-tag",
"peerDependencies": {
"@babel/core": "^7.0.0",
"graphql-tag": "^2.10.1",
"graphql": "^14.0.0 || ^15.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gajus/babel-plugin-graphql-tag.git"
},
"resolutions": {
"jest": "^24.1.0"
},
"scripts": {
"build": "rm -fr ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --source-maps --copy-files",
"lint": "eslint ./src && flow",
"test": "cross-env NODE_ENV=test jest"
},
"version": "3.1.0"
}