UNPKG

graphcool-cli-core

Version:

103 lines (102 loc) 2.58 kB
{ "name": "graphcool-cli-core", "version": "1.5.0", "main": "dist/index.js", "files": [ "dist" ], "typings": "dist/index.d.ts", "author": "Tim Suchanek <tim@graph.cool>", "license": "MIT", "devDependencies": { "@types/aws-lambda": "^0.0.17", "@types/fs-extra": "^4.0.2", "@types/node": "^8.0.22", "husky": "^0.14.3", "jest": "^21.0.2", "lint-staged": "^4.2.3", "nock": "^9.0.14", "prettier": "^1.5.3", "rimraf": "^2.6.1", "ts-jest": "^21.0.0", "tslint": "^5.6.0", "tslint-config-prettier": "^1.3.0", "tslint-eslint-rules": "^4.1.1", "typescript": "^2.5.3" }, "engines": { "node": ">=6.0.0" }, "scripts": { "build": "rimraf dist && tsc -d && cp -r src/commands/local/docker dist/commands/local/docker && cp -r src/commands/deploy/Bundler/proxies dist/commands/deploy/Bundler/proxies", "lint": "tslint src/**/*.ts", "precommit": "lint-staged", "prettier": "prettier --single-quote --no-semi --trailing-comma all --write '*.ts' 'src/**/*.ts'", "prepublishOnly": "npm run lint && npm run build", "test": "NODE_ENV=test jest" }, "linters": { "*.ts": [ "prettier --single-quote --no-semi --trailing-comma all --write", "tslint", "jest --findRelatedTests", "git add" ] }, "lint-staged": { "gitDir": "../../../" }, "jest": { "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json" ], "rootDir": "./src", "transform": { "^.+\\.(ts|tsx)$": "../../../node_modules/ts-jest/preprocessor.js" }, "testMatch": [ "**/*.test.(ts|js)" ], "setupFiles": [ "../test/init.js" ], "globals": { "ts-jest": { "tsConfigFile": "./tsconfig.json" } } }, "dependencies": { "archiver": "^2.0.3", "callsites": "^2.0.0", "chalk": "^2.2.0", "chokidar": "^1.7.0", "download-github-repo": "^0.1.3", "figures": "^2.0.0", "fs-extra": "^4.0.2", "globby": "^6.1.0", "graphcool-inquirer": "^1.0.3", "graphcool-json-schema": "^0.3.14", "inquirer": "^3.3.0", "isomorphic-fetch": "^2.2.1", "js-yaml": "^3.9.1", "jwt-decode": "^2.2.0", "lodash": "^4.17.4", "lodash.differenceby": "^4.8.0", "multimatch": "^2.1.0", "opn": "^5.1.0", "pause": "^0.1.0", "portfinder": "^1.0.13", "scuid": "^1.0.2", "sillyname": "^0.1.0", "source-map-support": "^0.4.18", "table": "^4.0.1", "ts-node": "^3.3.0", "typescript": "^2.5.3", "validator": "^8.2.0" } }