-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
43 lines (43 loc) · 1000 Bytes
/
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
{
"name": "graphql-decorator",
"version": "0.2.0",
"description": "Creates GraphQL Schema from decorated TypeScript Class",
"main": "lib/index.js",
"engines": {
"node": ">=4.4.0"
},
"scripts": {
"typings": "dtsm install",
"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/Quramy/graphql-decorator.git"
},
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.1.3"
},
"peerDependencies": {
"graphql": "^0.6.0"
},
"devDependencies": {
"graphql": "^0.6.0",
"dtsm": "^1.1.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"tslint": "^3.11.0",
"typescript": "^1.8.10"
},
"typings": "lib/index.d.ts"
}