github-graphql-api
Version:
A node client for the GitHub GraphQL API with minimal dependencies created with TypeScript.
67 lines (66 loc) • 1.63 kB
JSON
{
"name": "github-graphql-api",
"version": "1.0.6",
"description": "A node client for the GitHub GraphQL API with minimal dependencies created with TypeScript.",
"keywords": [
"github",
"github-api",
"graphql",
"api",
"api-client",
"typescript",
"jest",
"node",
"nodejs"
],
"author": "Tamino Martinius <dev@zaku.eu>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"jsnext:main": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"license": "MIT",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/tamino-martinius/node-github-graphql-api.git"
},
"engines": {
"node": ">=6.14.0"
},
"scripts": {
"coverage": "rm -rf coverage* && jest --coverage",
"test": "jest",
"watch": "tsc -w",
"ci": "npm run coverage && codecov",
"compile": "rm -rf dist/* && tsc && tsc-mjs --sourceMap --declaration false --target esnext --module esnext --mjs",
"preversion": "npm run compile && git add ."
},
"devDependencies": {
"@types/jest": "^23.1.3",
"@types/node": "^10.5.1",
"codecov": "^3.0.2",
"jest": "^23.2.0",
"ts-dedent": "^1.0.0",
"ts-jest": "^22.4.6",
"ts-mjs": "^3.1.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.9.2"
},
"jest": {
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.(test|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/__tests__/*"
]
}
}