forked from asyarb/simple-gql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "simple-gql",
"version": "0.2.0",
"license": "MIT",
"description": "Lightweight GraphQL request utiltiy.",
"author": "Anthony Yarbrough <[email protected]>",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/simple-gql.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/asyarb/simple-gql",
"keywords": [
"graphql",
"small",
"fetch"
],
"repository": {
"type": "git",
"url": "https://github.com/asyarb/simple-gql.git"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint src/**/*.ts",
"prerelease": "yarn build",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.3",
"@types/node-fetch": "^2.5.7",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"husky": "^4.2.5",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"tsdx": "^0.13.2",
"tslib": "^1.13.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"graphql": "^15.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}