-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "vscode-apollo-relay",
"version": "1.5.2",
"description": "Simple configuration of vscode-apollo for Relay projects.",
"keywords": [
"apollo",
"graphql",
"relay",
"vscode"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/relay-tools/vscode-apollo-relay",
"homepage": "https://github.com/relay-tools/vscode-apollo-relay#readme",
"author": {
"name": "Eloy Durán",
"email": "eloy.de.enige@gmail.com",
"url": "https://github.com/alloy"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"lint": "tslint -p ./tsconfig.json",
"type-check": "tsc -p ./tsconfig.json --noEmit --pretty",
"test": "jest",
"prebuild": "rm -rf ./dist",
"build": "tsc -p ./tsconfig.build.json",
"release": "standard-version"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^12.7.4",
"@types/relay-compiler": "^8.0.0",
"@types/relay-config": "^6.0.0",
"apollo-language-server": "^1.23.4",
"graphql": "^15.3.0",
"jest": "26.4.2",
"prettier": "^2.1.2",
"relay-compiler": "^10.0.1",
"relay-compiler-language-typescript": "^13.0.1",
"relay-config": "^10.0.1",
"standard-version": "^9.0.0",
"ts-jest": "26.3.0",
"tslint": "^6.1.3",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"relay-compiler": ">=5.0.0",
"relay-config": ">=5.0.0"
},
"engines": {
"node": ">= 8"
},
"files": [
"/dist/**/*"
],
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true
}
}