This repository has been archived by the owner on Feb 1, 2019. It is now read-only.
forked from prisma-labs/prisma-binding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "prisma-binding",
"version": "0.0.0-semantic-release",
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/graphcool-binding.git"
},
"author": "Johannes Schickling <johannes@graph.cool>",
"contributors": [
"Kim Brandwijk <kim.brandwijk@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphcool-binding/issues"
},
"homepage": "https://github.com/graphcool/graphcool-binding",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -d",
"lint": "tslint --type-check --project tsconfig.json {src,test}/**/*.ts",
"test": "npm run lint && npm run build && copyfiles -u 2 tests/fixtures/* dist/tests/fixtures && ava"
},
"dependencies": {
"apollo-link": "1.2.1",
"apollo-link-error": "1.0.7",
"apollo-link-ws": "1.0.7",
"cross-fetch": "2.0.0",
"graphql-binding": "1.2.5",
"graphql-import": "0.4.5",
"graphql-tools": "2.21.0",
"http-link-dataloader": "^0.1.2",
"jsonwebtoken": "^8.1.0",
"subscriptions-transport-ws": "0.9.6"
},
"devDependencies": {
"@types/graphql": "0.12.4",
"@types/jsonwebtoken": "7.2.6",
"@types/node": "9.4.6",
"ava": "0.25.0",
"copyfiles": "1.2.0",
"graphql": "0.13.1",
"tslint": "5.9.1",
"tslint-config-standard": "7.0.0",
"typescript": "2.7.2"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0"
}
}