UNPKG

3.2 kBJSONView Raw
1{
2 "name": "graphcool-cli-engine",
3 "version": "0.8.3",
4 "main": "dist/index.js",
5 "files": [
6 "dist"
7 ],
8 "typings": "dist/index.d.ts",
9 "author": "Tim Suchanek <tim@graph.cool>",
10 "license": "Apache-2.0",
11 "devDependencies": {
12 "@types/jest": "^20.0.8",
13 "@types/lodash": "^4.14.77",
14 "@types/node": "^8.0.22",
15 "husky": "^0.14.3",
16 "jest": "^21.2.1",
17 "lint-staged": "^4.2.3",
18 "nock": "^9.0.14",
19 "prettier": "^1.5.3",
20 "rimraf": "^2.6.1",
21 "ts-jest": "^21.0.0",
22 "tslint": "^5.6.0",
23 "tslint-config-prettier": "^1.3.0",
24 "tslint-eslint-rules": "^4.1.1",
25 "typescript": "^2.4.2"
26 },
27 "scripts": {
28 "build": "tsc -d",
29 "lint": "tslint src/**/*.ts",
30 "precommit": "lint-staged",
31 "prettier": "prettier --single-quote --no-semi --trailing-comma all --write '*.ts' 'src/**/*.ts'",
32 "prepublishOnly": "yarn link && yarn test && yarn build",
33 "test": "npm run lint && jest"
34 },
35 "lint-staged": {
36 "gitDir": "../../../"
37 },
38 "linters": {
39 "*.ts": [
40 "prettier --single-quote --no-semi --trailing-comma all --write",
41 "tslint",
42 "jest --findRelatedTests",
43 "git add"
44 ]
45 },
46 "jest": {
47 "moduleFileExtensions": [
48 "ts",
49 "tsx",
50 "js",
51 "jsx",
52 "json"
53 ],
54 "rootDir": "./src",
55 "transform": {
56 "^.+\\.(ts|tsx)$": "../../../node_modules/ts-jest/preprocessor.js"
57 },
58 "testMatch": [
59 "**/*.test.(ts|js)"
60 ],
61 "setupFiles": [
62 "../test/init.js"
63 ],
64 "globals": {
65 "ts-jest": {
66 "tsConfigFile": "./tsconfig.json"
67 }
68 }
69 },
70 "dependencies": {
71 "@heroku/linewrap": "^1.0.0",
72 "@types/fs-extra": "^4.0.2",
73 "ajv": "^5.2.2",
74 "ansi-escapes": "^3.0.0",
75 "ansi-styles": "^3.2.0",
76 "bluebird": "^3.5.0",
77 "cache-require-paths": "^0.3.0",
78 "callsites": "^2.0.0",
79 "cardinal": "^1.0.0",
80 "chalk": "^2.2.0",
81 "charm": "^1.0.2",
82 "debug": "^3.0.1",
83 "directory-tree": "^2.0.0",
84 "dotenv": "^4.0.0",
85 "find-up": "^2.1.0",
86 "fs-extra": "^4.0.2",
87 "graphcool-inquirer": "^1.0.3",
88 "graphcool-json-schema": "1.2.0",
89 "graphcool-yml": "0.3.0",
90 "graphql-request": "^1.3.4",
91 "isomorphic-fetch": "^2.2.1",
92 "jsonwebtoken": "^8.1.0",
93 "klaw-sync": "^3.0.0",
94 "lodash": "^4.17.4",
95 "lodash.ary": "^4.1.1",
96 "lodash.defaults": "^4.2.0",
97 "lodash.flatten": "^4.4.0",
98 "lodash.get": "^4.4.2",
99 "lodash.groupby": "^4.6.0",
100 "lodash.identity": "^3.0.0",
101 "lodash.keys": "^4.2.0",
102 "lodash.maxby": "4.x",
103 "lodash.merge": "4.x",
104 "lodash.partial": "^4.2.1",
105 "lodash.property": "^4.4.2",
106 "lodash.result": "^4.5.2",
107 "lodash.uniqby": "^4.7.0",
108 "marked": "^0.3.6",
109 "marked-terminal": "^2.0.0",
110 "memfs": "^2.5.3",
111 "opn": "^5.1.0",
112 "raven": "^2.3.0",
113 "replaceall": "^0.1.6",
114 "rwlockfile": "^1.4.8",
115 "scuid": "^1.0.2",
116 "source-map-support": "^0.4.18",
117 "string": "3.x",
118 "string-similarity": "^1.2.0",
119 "strip-ansi": "^4.0.0",
120 "supports-color": "^4.4.0",
121 "treeify": "^1.0.1",
122 "update-notifier": "^2.3.0",
123 "validator": "^8.2.0",
124 "yaml-ast-parser": "^0.0.34"
125 }
126}