forked from jjangga0214/hasura-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.81 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "hasura-cli",
"version": "2.15.1",
"license": "MIT",
"engines": {
"node": ">=8"
},
"scripts": {
"postinstall": "node dist/index.js",
"husky-skip": "cross-env HUSKY_SKIP_HOOKS=1",
"verdaccio": "verdaccio --config ./verdaccio/conf/default.yaml",
"lint:js": "eslint --ext js --ext md",
"lint:ts": "eslint --ext ts --ext md",
"lint:code": "eslint --ext js --ext ts --ext md --ext json",
"lint:code:ci": "yarn lint:code . --format junit",
"lint:md": "markdownlint --ignore node_modules --ignore .git --ignore CHANGELOG.md",
"lint": "yarn lint:code . && yarn lint:md .",
"format:js": "yarn lint:js --fix",
"format:ts": "yarn lint:ts --fix",
"format:md": "yarn lint:md --fix",
"format": "yarn format:js . && yarn format:ts . && yarn format:md .",
"test": "jest",
"test:coverage": "yarn test --coverage",
"build": "shx rm -rf dist/* && tsc",
"build:watch": "tsc -w",
"build:incremental": "tsc -i",
"prepublishOnly": "yarn build",
"dev:build": "concurrently 'tsc -w -i' 'nodemon dist/index.js'",
"dev:no-respawn": "dotenv -- ts-node-dev --transpileOnly src/index.ts",
"dev": "dotenv -- ts-node-dev --transpileOnly --respawn src/index.ts",
"ts": "dotenv -- ts-node",
"start": "node dist/index.js",
"prepare": "husky install"
},
"lint-staged": {
"hasura": [
"echo \"Error: Change to dummy file 'hasura' is blocked by default to prevent accidental commit of binary. If you want to change its content, try again by ignoring husky.\" && exit 1"
],
"*.js": [
"yarn format:js"
],
"*.ts": [
"yarn format:ts"
],
"*.md": [
"yarn format:md"
],
"*.json": [
"yarn lint:code"
]
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"commitizen": "^4.0.3",
"concurrently": "^6.0.0",
"cross-env": "^6.0.0",
"cz-conventional-changelog": "^3.0.2",
"dotenv-cli": "^2.0.1",
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.9.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^7.0.0",
"jest": "^26.6.3",
"jest-junit": "^7.0.0",
"lint-staged": "^11.1.1",
"markdownlint-cli": "^0.22.0",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"shx": "^0.3.2",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"typescript": "^3.6.3",
"verdaccio": "^4.3.0"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^2.4.2"
},
"main": "dist/index.js",
"typescript:main": "src/index.ts",
"files": [
"dist",
"hasura"
],
"bin": {
"hasura": "./hasura"
},
"description": "A package that automatically installs and wraps Hasura CLI binary in isolated manner",
"repository": {
"type": "git",
"url": "https://github.com/jjangga0214/hasura-cli.git"
},
"bugs": {
"url": "https://github.com/jjangga0214/hasura-cli/issues"
},
"homepage": "https://github.com/jjangga0214/hasura-cli",
"author": {
"name": "Gil B. Chan",
"email": "bnbcmindnpass@gmail.com",
"url": "https://github.com/jjangga0214"
},
"keywords": [
"hasura",
"hasura-cli",
"hasura/cli",
"hasuracli",
"hasura/graphql-engine",
"hasura/graphql-engine/cli",
"hasura/graphql-engine-cli",
"hasura-graphql",
"hasura-graphql-engine",
"hasura-graphql-engine-cli",
"graphql-engine/cli",
"graphql-engine-cli",
"graphql",
"graphql-cli"
]
}