This repository has been archived by the owner on May 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.87 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
72
73
74
75
76
77
78
79
80
{
"name": "graphql-lite",
"version": "0.0.0",
"description": "🍃 Lightweight GraphQL client",
"repository": "https://github.com/WeAreGenki/graphql-lite",
"bugs": "https://github.com/WeAreGenki/graphql-lite/issues",
"homepage": "https://wearegenki.github.io/graphql-lite",
"author": "Max Milton <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"graphql-client",
"graphql",
"typescript",
"wearegenki"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "build-lib --watch",
"build": "build-lib",
"prebuild": "rm -rf dist",
"lint": "yarn lint:md && yarn lint:js && yarn lint:types",
"lint:md": "remark --frail --quiet .",
"lint:js": "eslint --ignore-path .gitignore --ext html,js,md,ts .",
"lint:types": "tsc --noEmit",
"test": "jest --notify --watch",
"test-ci": "jest --coverage --runInBand --ci"
},
"peerDependencies": {
"graphql": "^14.0.0"
},
"devDependencies": {
"@minna-ui/build-lib": "0.35.0",
"@wearegenki/renovate-config": "1.0.0",
"codacy-coverage": "3.4.0",
"eslint": "6.5.0",
"jest": "24.9.0",
"minna-tools-essential": "0.35.0",
"prettier": "1.19.1",
"remark-cli": "7.0.0",
"typescript": "3.7.2"
},
"prettier": "minna-tools-essential/prettier",
"eslintConfig": {
"root": true,
"extends": [
"./node_modules/minna-tools-essential/eslint.js"
]
},
"eslintIgnore": [
"dist/**",
"test/coverage/**"
],
"remarkConfig": {
"plugins": [
"minna-tools-essential/remark"
]
},
"jest": {
"preset": "minna-tools-essential",
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"renovate": {
"extends": [
"@wearegenki"
]
},
"engines": {
"node": ">10.0.0"
},
"publishConfig": {
"access": "public"
}
}