forked from Quramy/graphql-decorator
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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-schema-decorator",
"version": "1.0.0",
"description": "Creates GraphQL Schema from decorated TypeScript Class",
"main": "lib/index.js",
"engines": {
"node": ">=6.10.0"
},
"scripts": {
"build": "rimraf lib && tsc",
"lint": "tslint \"src/**/*.ts\" --type-check --project ./tsconfig.json",
"lint:fix": "tslint --fix \"src/**/*.ts\" --type-check --project ./tsconfig.json",
"test": "mocha --require ts-node/register src/**/*.spec.ts",
"test:watch": "mocha --require ts-node/register src/**/*.spec.ts --watch"
},
"keywords": [
"graphql",
"typescript",
"decorators"
],
"author": "Quramy",
"repository": {
"type": "git",
"url": "https://github.com/indigotech/graphql-schema-decorator.git"
},
"license": "MIT",
"dependencies": {
"reflect-metadata": "0.1.9"
},
"peerDependencies": {
"graphql": "14.6.0"
},
"devDependencies": {
"@types/graphql": "14.5.0",
"@types/mocha": "7.0.2",
"@types/node": "12.12.6",
"assert": "1.4.1",
"graphql": "14.6.0",
"mocha": "7.1.0",
"rimraf": "2.5.2",
"ts-node": "8.6.2",
"tslint": "5.1.0",
"typescript": "3.8.3"
},
"typings": "lib/index.d.ts"
}