-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.8 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "graphql-directive-deprecated",
"version": "3.0.0",
"description": "A GraphQL schema directive for deprecating fields",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brandondoran/graphql-directive-deprecated.git"
},
"author": {
"name": "Brandon Doran",
"email": "[email protected]"
},
"keywords": [
"graphql",
"apollo",
"directive",
"deprecated",
"schema directive"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc --pretty",
"clean": "rimraf lib",
"coverage": "npm t -- --coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"precoverage": "rimraf coverage",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "jest",
"watch": "npm run build -- --watch",
"watch:test": "npm t -- --watch"
},
"dependencies": {
"graphql-tools": "^5.0.0"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.1",
"coveralls": "^3.0.9",
"graphql": "^14.6.0",
"jest": "^25.1.0",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.3",
"ts-jest": "^25.2.0",
"ts-node": "^9.0.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "chore",
"scope": "deps",
"release": "minor"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}