-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "apollo-link-webextensions-messaging",
"version": "1.0.3",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest .",
"build": "tsc",
"lint": "eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.114",
"@types/delay": "^3.1.0",
"@types/firefox-webext-browser": "^70.0.1",
"@types/jest": "^25.2.3",
"@types/uniqid": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-error": "^1.1.13",
"delay": "^4.3.0",
"eslint": "^7.1.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"graphql": "*"
},
"dependencies": {
"apollo-link": "^1.2.14",
"uniqid": "^5.2.0"
}
}