-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 1.86 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "slicknode-apollo",
"version": "0.1.1",
"repository": "https://github.com/slicknode/slicknode-apollo.git",
"author": "Ivo Meißner <[email protected]>",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -c tslint.json --fix 'src/**/*.ts'",
"build": "tsc",
"clean": "rimraf dist/*",
"watch": "tsc --watch",
"test": "npm run lint && npm run testonly",
"testonly": "mocha --check-leaks --exit --full-trace --require ts-node/register 'src/**/__tests__/**/*-test.{ts,tsx}'",
"testonly:cover": "nyc --reporter html --reporter text-summary -- npm run testonly",
"testonly:coveralls": "nyc --silent -- npm run testonly && nyc report --reporter text-lcov | coveralls",
"dist": "npm run clean && tsc",
"prepare": "npm run clean && npm run dist"
},
"directories": {
"lib": "./dist"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/graphql": "^14.0.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"graphql": "^14.0.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"sinon": "^6.3.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"src/**/*"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"apollo-cache": "^1.1.17",
"apollo-cache-inmemory": "^1.2.10",
"apollo-client": "^2.4.2",
"slicknode-apollo-link": "^0.1.2",
"slicknode-client": "^0.2.2"
},
"peerDependencies": {
"graphql": "^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0"
}
}