forked from leoasis/graphql-tag.macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "@masterhealth-technologies/graphql-tag.macro",
"version": "2.1.0",
"description": "graphql-tag as a babel-macro",
"author": {
"name": "Leonardo Andres Garcia Crespo",
"email": "[email protected]",
"url": "http://leoasis.github.io"
},
"homepage": "https://github.com/leoasis/graphql-tag.macro",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-jest": "^24.0.0",
"babel-plugin-tester": "^6.0.0",
"jest": "^24.0.0"
},
"dependencies": {
"babel-literal-to-ast": "^2.0.0",
"babel-plugin-macros": "^2.4.2",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0"
},
"scripts": {
"test": "jest",
"inspecttest": "node --inspect-brk node_modules/.bin/jest --runInBand",
"babel": "babel src --out-dir dist --ignore \"src/**/*.test.js,__snapthots__\"",
"prepublish": "rm -rf dist && npm run babel && mv dist/index.macro.js dist/index.js && cp src/index.d.ts dist/"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}