-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "thin-graphql-decorators",
"version": "0.3.0",
"description": "Use GraphQL.js to create schemas, this library adds a few light-weight decorators that make object definitions less verbose.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/smallhelm/thin-graphql-decorators.git"
},
"files": [
"index.d.ts",
"index.js",
"index.js.map",
"index.ts"
],
"keywords": [
"graphql",
"decorators",
"lightweight",
"schema"
],
"author": "farskipper",
"license": "MIT",
"bugs": {
"url": "https://github.com/smallhelm/thin-graphql-decorators/issues"
},
"homepage": "https://github.com/smallhelm/thin-graphql-decorators#readme",
"scripts": {
"prepare": "tsc",
"test": "tsc && ava"
},
"dependencies": {
"get-parameter-names": "^0.3.0",
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"graphql": "^15.3.0"
},
"devDependencies": {
"@types/node": "^14.0.23",
"ava": "^3.10.1",
"graphql": "^15.3.0",
"typescript": "^3.3.3"
}
}