forked from nicolasgere/graphql-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "graphql-ts",
"version": "0.1.1",
"description": "graphQL implementation for Typescript",
"main": "index.js",
"keywords": [
"graphql",
"typescript",
"decorator",
"metadata"
],
"homepage": "https://github.com/nicolasgere/graphql-ts",
"repository": {
"type": "git",
"url": "https://github.com/nicolasgere/graphql-ts.git"
},
"peerDependencies": {
"graphql": "^0.10.1"
},
"dependencies": {
"@types/graphql": "^0.8.6",
"@types/reflect-metadata": "0.0.5",
"@types/request": "0.0.42",
"reflect-metadata": "^0.1.9"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/express": "^4.0.35",
"@types/express-graphql": "0.0.33",
"@types/mocha": "^2.2.39",
"@types/request": "^0.0.45",
"chai": "^3.5.0",
"express": "^4.14.1",
"express-graphql": "^0.6.3",
"mocha": "^3.2.0"
},
"scripts": {
"test": "tsc && mocha exemple/test",
"build": "tsc -d && rm -rf node_modules/ && rm -rd exemple/ && find . -type f -name '*[^d*].ts' -delete && rm -rf tsconfig.json && rm -rf .travis.yml && rm -rf .gitignore && sed -i '1d' index.d.ts",
"expose": "tsc && node exemple/expose/index.js"
},
"author": "Nicolas Gere-lamaysouette",
"license": "ISC"
}