-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.17 KB
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": "genql-upload",
"version": "1.0.0",
"description": "Graphql Upload support for genql",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"keywords": [
"genql",
"graphql",
"upload",
"stackables"
],
"files": [
"build"
],
"scripts": {
"prepack": "tsc",
"test:generate": "genql --schema ./test/schema.graphql --output ./test/generated",
"test": "jest",
"semantic-release": "semantic-release -b main"
},
"repository": {
"type": "git",
"url": "https://github.com/stackables/genql-upload.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackables/genql-upload/issues"
},
"homepage": "https://github.com/stackables/genql-upload#readme",
"devDependencies": {
"@genql/cli": "^6.3.3",
"@tsconfig/node18": "^18.2.4",
"@types/isomorphic-fetch": "^0.0.39",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.5",
"graphql-yoga": "^5.3.0",
"jest": "^29.7.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**"
]
},
"dependencies": {
"form-data": "^4.0.0",
"isomorphic-fetch": "^3.0.0"
}
}