Mirror: Modular GraphQL.js import paths without the hassle.
1{
2 "name": "babel-plugin-modular-graphql",
3 "description": "Modular GraphQL.js import paths without the hassle",
4 "version": "0.1.3",
5 "main": "index.js",
6 "author": "Phil Pluckthun <phil@kitten.sh>",
7 "license": "MIT",
8 "repository": "https://github.com/kitten/babel-plugin-modular-graphql",
9 "bugs": {
10 "url": "https://github.com/kitten/babel-plugin-modular-graphql/issues"
11 },
12 "files": [
13 "import-map.json",
14 "import-map-overrides.json",
15 "index.js"
16 ],
17 "scripts": {
18 "build": "node scripts/generate-import-map.js",
19 "prepublishOnly": "node scripts/generate-import-map.js"
20 },
21 "keywords": [
22 "graphql",
23 "babel-plugin",
24 "modular",
25 "tree-shaking"
26 ],
27 "devDependencies": {
28 "@rollup/plugin-node-resolve": "^7.1.3",
29 "acorn-walk": "^7.1.1",
30 "graphql": "^15.0.0",
31 "husky": "^4.2.5",
32 "lint-staged": "^10.1.3",
33 "prettier": "^2.0.4",
34 "rollup": "^2.6.1"
35 },
36 "lint-staged": {
37 "*.{json,js}": [
38 "prettier --write"
39 ]
40 },
41 "husky": {
42 "hooks": {
43 "pre-commit": "lint-staged"
44 }
45 },
46 "prettier": {
47 "singleQuote": true,
48 "printWidth": 100
49 }
50}