forked from dotansimha/graphql-binding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "graphql-binding",
"version": "0.0.0-semantic-release",
"license": "MIT",
"repository": "[email protected]:graphcool/graphql-binding.git",
"author": "Johannes Schickling <[email protected]>",
"contributors": [
"Kim Brandwijk <[email protected]>",
"Tim Suchanek <[email protected]>",
"Marcin Pacholec <[email protected]>",
"Matic Zavadlal <[email protected]>"
],
"bin": {
"graphql-binding": "./dist/bin.js"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm-run-all build",
"clean": "rimraf dist",
"compile": "tsc -d",
"build": "npm-run-all clean compile",
"pretest": "npm-run-all build",
"test-lint": "tslint --project tsconfig.json {src}/**/*.ts && prettier-check --ignore-path .gitignore src/**/*.ts",
"test-ava": "ava",
"test": "npm-run-all test-*"
},
"dependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-import": "^0.7.1",
"graphql-tools": "4.0.4",
"iterall": "1.2.2",
"object-path-immutable": "^3.0.0",
"resolve-cwd": "^2.0.0",
"ts-node": "^7.0.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"@types/graphql": "14.0.5",
"@types/mkdirp": "0.5.2",
"@types/node": "10.12.18",
"@types/yargs": "12.0.8",
"apollo-link": "1.2.6",
"ava": "1.1.0",
"graphql-tag": "2.10.1",
"husky": "1.3.1",
"npm-run-all": "4.1.5",
"prettier": "1.15.3",
"prettier-check": "2.0.0",
"pretty-quick": "1.10.0",
"rimraf": "2.6.3",
"semantic-release": "15.13.3",
"tslint": "5.12.1",
"tslint-config-prettier": "1.17.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.2.4"
}
}