UNPKG

1.54 kBJSONView Raw
1{
2 "name": "graphcool",
3 "version": "0.11.6",
4 "main": "dist/index.js",
5 "bin": {
6 "graphcool-framework": "dist/index.js",
7 "gcf": "dist/index.js",
8 "graphcool": "dist/index.js",
9 "gc": "dist/index.js"
10 },
11 "files": [
12 "dist"
13 ],
14 "typings": "dist/index.d.ts",
15 "author": "Tim Suchanek <tim@graph.cool>",
16 "license": "Apache-2.0",
17 "devDependencies": {
18 "@types/node": "^8.0.22",
19 "husky": "^0.14.3",
20 "lint-staged": "^4.0.3",
21 "prettier": "^1.5.3",
22 "rimraf": "^2.6.1",
23 "tslint": "^5.6.0",
24 "tslint-config-prettier": "^1.3.0",
25 "tslint-eslint-rules": "^4.1.1",
26 "typescript": "^2.4.2"
27 },
28 "scripts": {
29 "build": "rimraf dist && tsc -d && chmod +x dist/index.js",
30 "lint": "tslint src/**/*.ts",
31 "precommit": "lint-staged",
32 "prettier": "prettier --single-quote --no-semi --trailing-comma all --write '*.ts' 'src/**/*.ts'",
33 "prepublishOnly": "npm run lint && npm run build"
34 },
35 "cli-engine": {
36 "bin": "graphcool",
37 "dirname": "graphcool",
38 "node": "6.0.0",
39 "defaultCommand": "help",
40 "plugins": [
41 "graphcool-cli-core"
42 ]
43 },
44 "lint-staged": {
45 "*.ts": [
46 "prettier --single-quote --no-semi --trailing-comma all --write",
47 "tslint",
48 "git add"
49 ],
50 "gitDir": "../../"
51 },
52 "dependencies": {
53 "fs-extra": "^4.0.1",
54 "graphcool-cli-core": "1.10.11",
55 "graphcool-cli-engine": "0.6.8-framework",
56 "semver": "^5.4.1",
57 "source-map-support": "^0.4.18"
58 },
59 "engines": {
60 "node": ">=6.0.0"
61 }
62}