-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.71 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "graphql-compose-typescript",
"version": "0.11.0",
"repository": {
"type": "git",
"url": "https://github.com/janexpando/graphql-compose-typescript"
},
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "npm run check && nyc ava",
"test:watch": "ava --watch",
"check": "tsc --noEmit",
"check:watch": "tsc --noEmit -w",
"build": "tsc",
"prepublish": "npm run build",
"coverage-report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prettier": "prettier ./src/**/*.ts ./tests/**/*.ts --write"
},
"keywords": [],
"author": "Jan Kremeň",
"license": "MIT",
"dependencies": {
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.11",
"prettier": "^1.16.4"
},
"devDependencies": {
"@types/graphql": "^14.0.5",
"@types/lodash": "^4.14.123",
"@types/node": "^12.0.2",
"ava": "^1.1.0",
"codecov": "^3.1.0",
"graphql": "^14.1.1",
"graphql-compose": "^6.0.3",
"injection-js": "^2.2.1",
"nyc": "^14.0.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.0.2",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.2.4"
},
"peerDependencies": {
"graphql": "^14.1.1",
"graphql-compose": "^6.0.3"
},
"ava": {
"files": [
"tests/**/*.ts",
"!**/*.d.ts"
],
"sources": [
"src/**/*.ts"
],
"require": [
"reflect-metadata",
"ts-node/register/transpile-only"
],
"compileEnhancements": false,
"extensions": [
"ts"
]
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"dist",
"tests",
"examples",
"**/*.d.ts"
],
"all": true
}
}