-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "graphql-tester",
"version": "0.0.5",
"description": "Test Framework for executing integration tests against GraphQL Services",
"main": "lib/main/index.js",
"scripts": {
"clean": "rm -rf lib",
"compile": "babel src/main -d lib/main",
"test-compile": "babel src/test -d lib/test",
"pretest-compile": "npm run compile",
"preunittest": "npm run test-compile",
"unittest": "mocha -G --recursive --require lib/test/setup lib/test",
"lint": "eslint src",
"test": "npm run lint && npm run unittest",
"prepublish": "npm run clean && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sazzer/graphql-tester.git"
},
"keywords": [
"graphql",
"test"
],
"author": "Graham Cox <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sazzer/graphql-tester/issues"
},
"homepage": "https://github.com/sazzer/graphql-tester#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.8.0",
"express": "^4.13.4",
"express-graphql": "^0.5.4",
"graphql": "^0.7.2",
"hapi": "^15.1.1",
"hapi-graphql": "^1.0.1",
"mocha": "^3.1.2"
},
"dependencies": {
"freeport": "^1.0.5",
"request": "^2.69.0"
},
"engines": {
"node": ">=4.0.0"
}
}