Mirror: Modular GraphQL.js import paths without the hassle.
at v0.1.1 1.1 kB view raw
1{ 2 "name": "babel-plugin-modular-graphql", 3 "description": "Modular GraphQL.js import paths without the hassle", 4 "version": "0.1.1", 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 "index.js" 15 ], 16 "scripts": { 17 "build": "node scripts/generate-import-map.js", 18 "prepublishOnly": "node scripts/generate-import-map.js" 19 }, 20 "keywords": [ 21 "graphql", 22 "babel-plugin", 23 "modular", 24 "tree-shaking" 25 ], 26 "devDependencies": { 27 "@rollup/plugin-node-resolve": "^7.1.3", 28 "acorn-walk": "^7.1.1", 29 "graphql": "^15.0.0", 30 "husky": "^4.2.5", 31 "lint-staged": "^10.1.3", 32 "prettier": "^2.0.4", 33 "rollup": "^2.6.1" 34 }, 35 "lint-staged": { 36 "*.{json,js}": [ 37 "prettier --write" 38 ] 39 }, 40 "husky": { 41 "hooks": { 42 "pre-commit": "lint-staged" 43 } 44 }, 45 "prettier": { 46 "singleQuote": true, 47 "printWidth": 100 48 } 49}