-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 900 Bytes
/
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
{
"name": "jraph",
"version": "3.3.6",
"description": "A fetch wrapper for GraphQL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"pretest": "npm install && npm run build",
"test": "mocha --recursive \"./test/**/*.js\"",
"preversion": "npm ci",
"version": "npm run build && git add -A .",
"postversion": "git push && git push --tags"
},
"keywords": [
"graphql",
"javascript",
"typescript",
"isomorphic",
"fetch"
],
"author": "Ian Fabs",
"license": "MIT",
"repository": {
"url": "https://github.com/ianfabs/jraph.git",
"type": "github"
},
"dependencies": {
"@types/node": "^10.12.12"
},
"peerDependencies": {
"node-fetch": "^2.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"typescript": "^3.1.6"
}
}