-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
{
"name": "slicknode-client",
"version": "0.4.0",
"description": "Lightweight GraphQL client for slicknode GraphQL servers",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"watch": "mocha --watch --check-leaks --exit --full-trace --require ts-node/register --watch-extensions ts,tsx 'src/**/__tests__/**/*-test.{ts,tsx}'",
"clean": "rimraf dist/*",
"coverage": "NODE_PATH=src babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha $npm_package_options_mochacoverage",
"test": "npm run lint && npm run testonly",
"testonly": "mocha --check-leaks --exit --full-trace --require ts-node/register 'src/**/__tests__/**/*-test.{ts,tsx}'",
"dist": "npm run clean && tsc",
"prepare": "npm run clean && npm run dist"
},
"directories": {
"lib": "./dist"
},
"dependencies": {
"@types/node": "^14.14.8",
"isomorphic-fetch": "^3.0.0",
"isomorphic-form-data": "^2.0.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": "slicknode/slicknode-client",
"keywords": [
"graphql",
"slicknode"
],
"author": "Ivo Meißner",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"chai": "^4.1.0",
"eslint": "^4.0.0",
"eslint-plugin-typescript": "^0.12.0",
"graphql": "^15.4.0",
"mocha": "^3.4.2",
"nock": "^9.0.14",
"rimraf": "^2.6.1",
"ts-node": "^7.0.1",
"typescript": "^3.0.3",
"typescript-eslint-parser": "^18.0.0"
}
}