-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "easygraphql-tracing",
"version": "0.0.3",
"description": "Get a tracing of your GraphQL resolvers",
"main": "index.js",
"scripts": {
"prettier:check": "prettier --write './{lib,test,utils}/**/*.{js,graphql}'",
"prettier:format": "prettier --write './{lib,test,utils}/**/*.{js,graphql}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:format && git add ."
}
},
"keywords": [],
"homepage": "https://github.com/EasyGraphQL/easygraphql-tracing",
"author": {
"name": "EasyGraphQL",
"url": "https://github.com/EasyGraphQL"
},
"repository": {
"type": "git",
"url": "https://github.com/EasyGraphQL/easygraphql-tracing"
},
"bugs": {
"url": "https://github.com/EasyGraphQL/easygraphql-tracing"
},
"license": "MIT",
"peerDependencies": {
"graphql": "^14.0.0"
},
"dependencies": {
"graphql": "^14.0.2",
"cli-table": "^0.3.1"
},
"devDependencies": {
"husky": "^1.2.1",
"prettier": "^1.18.2"
}
}