-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "graphql-resolved",
"version": "1.0.5",
"description": "Framework agnostic resolvers creation/composition for GraphQL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"keywords": [
"graphql",
"resolver",
"chain",
"composition",
"apollo"
],
"scripts": {
"test": "mocha --opts mocha.opts",
"build": "rm -rf dist && tsc"
},
"dependencies": {
"graphql": "^0.13.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dotenv-cli": "1.4.0",
"graphql-cli": "2.15.13",
"mocha": "^5.2.0",
"nodemon": "1.14.11",
"npm-run-all": "4.1.2",
"ts-node": "6.0.2",
"typescript": "2.8.3"
},
"resolutions": {
"**@types/mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/theGlenn/graphql-resolved.git"
},
"bugs": {
"url": "https://github.com/theGlenn/graphql-resolved/issues"
},
"homepage": "https://github.com/theGlenn/graphql-resolved"
}