UNPKG

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