| Current Path : /etc/kibana/node_modules/graphql-extensions/ |
| Current File : //etc/kibana/node_modules/graphql-extensions/package.json |
{
"name": "graphql-extensions",
"version": "0.0.10",
"description": "Add extensions to GraphQL servers",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"compile": "tsc",
"watch": "tsc -w",
"prepare": "npm run clean && npm run compile",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "apollographql/graphql-extensions"
},
"author": "Martijn Walraven <martijn@martijnwalraven.com>",
"license": "MIT",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"core-js": "^2.5.3",
"source-map-support": "^0.5.1"
},
"peerDependencies": {
"graphql": "0.10.x - 0.13.x"
},
"devDependencies": {
"@types/graphql": "^0.12.6",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.0",
"graphql": "^0.13.2",
"jest": "^22.4.3",
"jest-matcher-utils": "^22.4.3",
"ts-jest": "^22.4.2",
"typescript": "^2.7.2"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/src/polyfills.js"
],
"testMatch": [
"**/test/**/*.(js|ts)",
"**/test/*.(js|ts)"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/"
],
"transform": {
"^.+\\.(ts|js)x?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js"
]
}
}