-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.3 KB
/
package.json
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
{
"name": "gql-query-builder",
"version": "3.8.0",
"description": "Simple GraphQL Query Builder",
"repository": {
"type": "git",
"url": "git+https://github.com:atulmy/gql-query-builder.git"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "tslint --format stylish --project .",
"test": "jest --config",
"prepare": "husky install"
},
"keywords": [
"graphql",
"query",
"builder",
"javascript"
],
"author": "Atul Yadav <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atulmy/gql-query-builder/issues"
},
"homepage": "https://github.com/atulmy/gql-query-builder",
"devDependencies": {
"@types/jest": "^28.1.6",
"husky": "^8.0.1",
"jest": "28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts}": [
"npm run lint -- --fix",
"git add"
],
"*.{ts,json,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {}
}