forked from Quramy/graphql-decorator
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "graphql-schema-decorator",
"version": "0.8.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\"",
"test": "npm run build && npm run lint && mocha lib/**/*.spec.js",
"watch": "tsc -w",
"watch-test": "mocha lib/**/*.spec.js --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": "0.11.7"
},
"devDependencies": {
"graphql": "0.11.7",
"mocha": "2.5.3",
"assert": "1.4.1",
"rimraf": "2.5.2",
"tslint": "5.1.0",
"typescript": "2.3.4",
"@types/graphql": "0.11.5",
"@types/mocha": "2.2.39",
"@types/node": "7.0.5"
},
"typings": "lib/index.d.ts"
}