-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "graphql-joda-types",
"version": "3.0.0",
"scripts": {
"build": "tsc --build",
"precommit": "pretty-quick --staged",
"prepublish": "tsc",
"semantic-release": "semantic-release",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"description": "js-joda types for GraphQL",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/meetup/graphql-joda-types",
"author": "Meetup",
"license": "MIT",
"dependencies": {
"@js-joda/core": "^3.2.0 || ^4.0.0 || ^5.0.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0"
},
"release": {
"branches": [
"main",
"alpha",
"beta"
]
},
"devDependencies": {
"@types/jest": "^27.4.0",
"coveralls": "^3.0.1",
"graphql": "^15.5.0",
"husky": "^8.0.1",
"jest": "^27.4.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"files": [
"dist"
]
}