-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "graphql-tools",
"version": "0.8.3",
"description": "A set of useful tools for GraphQL",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"directories": {
"test": "test"
},
"scripts": {
"compile": "tsc",
"typings": "typings install",
"pretest": "npm run compile",
"test": "npm run testonly --",
"posttest": "npm run lint",
"lint": "tslint $(find src | grep ts$)",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js",
"coverage": "istanbul cover _mocha -- --reporter dot --full-trace ./dist/test/tests.js",
"postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info",
"prepublish": "npm run compile",
"prerelease": "npm test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/graphql-tools.git"
},
"keywords": [
"GraphQL",
"Apollo",
"JavaScript",
"TypeScript",
"Mock",
"Schema",
"Schema Language",
"Tools"
],
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollostack/graphql-tools/issues"
},
"homepage": "https://github.com/apollostack/graphql-tools#readme",
"dependencies": {
"deprecated-decorator": "^0.1.6",
"lodash": "^4.3.0",
"node-uuid": "^1.4.7"
},
"peerDependencies": {
"graphql": "^0.5.0 || ^0.6.0 || ^0.7.0 || ^0.8.0"
},
"optionalDependencies": {
"typed-graphql": "^1.0.2"
},
"devDependencies": {
"@types/bluebird": "^3.0.32",
"@types/chai": "^3.4.32",
"@types/lodash": "^4.14.34",
"@types/mocha": "^2.2.31",
"@types/node": "^6.0.38",
"@types/node-uuid": "0.0.27",
"@types/request": "0.0.30",
"@types/request-promise": "^3.0.30",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"express": "^4.13.4",
"graphql": "^0.8.1",
"graphql-subscriptions": "^0.2.0",
"graphql-type-json": "^0.1.3",
"istanbul": "^0.4.5",
"mocha": "^3.0.1",
"remap-istanbul": "^0.7.0",
"request": "^2.72.0",
"request-promise": "^4.1.0",
"source-map-support": "^0.4.2",
"standard-version": "^3.0.0",
"tslint": "^4.0.1",
"typescript": "2.0.10"
}
}