-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "apollo-node-client",
"version": "1.4.3",
"description": "Node.js Client for Apollo",
"author": "zhangxh1023",
"email": "zhangxh1023@gmail.com",
"url": "https://github.com/zhangxh1023/apollo-node-client",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:zhangxh1023/apollo-node-client.git"
},
"files": [
"dist"
],
"keywords": [
"apollo",
"apollo client",
"ctrip apollo",
"ctrip apollo client"
],
"scripts": {
"build": "tsc --sourceMap false -p tsconfig.json",
"clean": "rm -rf dist coverage",
"lint": "eslint --ext .ts .",
"fix": "eslint --fix --ext .ts .",
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test",
"test": "jest",
"test:coverage": "jest --coverage"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"i": "^0.3.7",
"jest": "^29.4.1",
"npm": "^8.19.2",
"ts-jest": "^29.0.5",
"typescript": "^4.8.3"
},
"dependencies": {
"node-fetch": "^2.6.9",
"query-string": "^7.1.3"
}
}