-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
71 lines (71 loc) · 1.64 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gotql",
"version": "2.0.7",
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"scripts": {
"test": "npm run build:clean && jest",
"prepare": "npm run build:clean",
"lint": "standard -v ./src",
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rm -rf dist",
"build:clean": "npm run clean && npm run build",
"lint:fix": "standard --fix"
},
"description": "A GraphQL query framework for serverside apps",
"main": "dist/index.js",
"repository": "https://github.com/khaosdoctor/gotql.git",
"bugs": {
"url": "https://github.com/khaosdoctor/gotql/issues"
},
"pre-commit": [
"lint"
],
"pre-push": [
"lint:fix",
"build"
],
"author": "Lucas Santos <lhs.santoss@gmail.com>",
"license": "MIT",
"keywords": [
"graphql",
"query",
"framework",
"serverside",
"graph",
"post"
],
"private": false,
"dependencies": {
"debug": "^4.1.1",
"got": "^11.5.1",
"prepend-http": "^3.0.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/nock": "^11.1.0",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"concurrently": "^6.2.0",
"conduct": "^3.0.0",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^27.0.4",
"nock": "^13.1.0",
"pre-push": "^0.1.1",
"prettier": "^2.3.1",
"standard": "^16.0.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
}
}