-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"author": "Louis Cruz <[email protected]>",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"description": "An esbuild plugin that allows for the importing of GraphQL files",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@graphql-tools/optimize": "^1.0.1",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.8.26",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"files": [
"lib/**/*"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"name": "@luckycatfactory/esbuild-graphql-loader",
"peerDependencies": {
"esbuild": ">=0.8.26",
"graphql-tag": "^2.11.0",
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/luckycatfactory/esbuild-graphql-loader.git"
},
"scripts": {
"build": "tsc && ts-node ./scripts/build.ts",
"commit": "cz",
"commitlint": "commitlint --edit",
"lint": "eslint . --ext .js,.ts",
"release": "semantic-release",
"test": "ts-node tests/prepare.ts && jest"
},
"types": "./lib/index.d.ts"
}