-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
{
"name": "expo-server-sdk",
"version": "3.13.0",
"description": "Server-side library for working with Expo using Node.js",
"main": "build/ExpoClient.js",
"types": "build/ExpoClient.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint src",
"prepare": "yarn build",
"test": "jest",
"tsc": "tsc",
"watch": "tsc --watch"
},
"eslintConfig": {
"extends": "universe/node"
},
"jest": {
"coverageDirectory": "<rootDir>/../coverage",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 0
}
},
"preset": "ts-jest",
"rootDir": "src",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expo/expo-server-sdk-node.git"
},
"keywords": [
"expo",
"push-notifications"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-server-sdk-node/issues"
},
"homepage": "https://github.com/expo/expo-server-sdk-node#readme",
"dependencies": {
"node-fetch": "^2.6.0",
"promise-limit": "^2.7.0",
"promise-retry": "^2.0.1"
},
"devDependencies": {
"@tsconfig/node-lts": "22.0.1",
"@tsconfig/strictest": "2.0.5",
"@types/node-fetch": "2.6.12",
"@types/promise-retry": "1.1.6",
"eslint": "^8.57.0",
"eslint-config-universe": "14.0.0",
"jest": "29.7.0",
"msw": "2.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"packageManager": "[email protected]"
}