-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "graphql-field-mask",
"version": "0.2.1",
"description": "google.protobuf.FieldMask from GraphQL query",
"sideEffects": false,
"main": "lib/index.js",
"module": "module/index.js",
"types": "lib/index.d.js",
"directories": {
"lib": "./lib"
},
"files": [
"lib/",
"module/",
"src/"
],
"repository": "https://github.com/proto-graphql/graphql-field-mask",
"author": "izumin5210 <m@izum.in>",
"license": "MIT",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "frolint --branch origin/main --expect-no-errors",
"prepack": "yarn clean && yarn build",
"test": "jest"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"frolint": "^2.8.2",
"graphql": "link:./node_modules/graphql-16.x",
"graphql-15.0.0": "npm:graphql@15.0.0",
"graphql-15.x": "npm:graphql@15.x",
"graphql-16.0.0": "npm:graphql@16.0.0",
"graphql-16.x": "npm:graphql@16.x",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}