-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
{
"name": "grapheetee",
"version": "0.1.0",
"description": "Fetch based GraphQL client.",
"main": "lib/GraphQlClient.js",
"scripts": {
"build": "rollup -c",
"coverage": "nyc --reporter=text --reporter=lcov mocha",
"lint": "eslint . && prettier --check '**/*.js'",
"prepublishOnly": "npm run build",
"test": "mocha"
},
"keywords": [
"GraphQL",
"fetch",
"client"
],
"files": [
"node.js",
"node.js.map",
"lib"
],
"author": "Alex J Burke @alexjeffburke <ajb@one.com>",
"repository": "git://github.com/One-com/grapheetee",
"license": "BSD-3-Clause",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"fetchception": "^1.1.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rollup": "^1.27.5",
"rollup-plugin-commonjs": "^10.1.0",
"unexpected": "^11.8.1",
"unexpected-sinon": "^10.11.2"
},
"dependencies": {
"createerror": "^1.1.0",
"form-data": "^3.0.0",
"httperrors": "^2.0.1",
"lodash.set": "^4.3.2",
"node-fetch": "^2.6.0",
"sinon": "^7.5.0"
}
}