-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "graphios",
"version": "1.2.1",
"description": "Easy-to-use HTTP client for GraphQL API's",
"author": {
"name": "Geraldo Ramos"
},
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/geraldoramos/graphios",
"license": "MIT",
"keywords": [
"axios",
"graphql",
"http client",
"graphql client"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
"test": "eslint ./src --ext .ts,.tsx && yarn build && ava"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"axios": "^0.19.0",
"axios-retry": "^3.1.2",
"deepmerge": "^4.0.0",
"events": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"ava": "2.4.0",
"eslint": "^6.5.1",
"prettier": "^1.18.2",
"typescript": "^3.5.3"
},
"ava": {
"failFast": true,
"files": [
"build/main/**/*.spec.js"
],
"sources": [
"build/main/**/*.js"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"tabWidth": 2
}
}