forked from expo/expo-server-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "expo-server-sdk",
"version": "3.7.0",
"description": "Fork of Expo's Server-side library for working to use with Deno",
"main": "build/ExpoClient.js",
"types": "build/ExpoClient.d.ts",
"files": [
"build"
],
"scripts": {
"build": "./build.sh",
"lint": "deno lint",
"prepare": "yarn build",
"test": "deno test",
"tsc": "tsc",
"watch": "deno run --watch ./src/ExpoClient.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrchrishahn/expo-server-sdk-deno.git"
},
"keywords": [
"expo",
"push-notifications"
],
"author": "chris@purpose.app",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrchrishahn/expo-server-sdk-deno/issues"
},
"homepage": "https://github.com/mrchrishahn/expo-server-sdk-deno#readme",
"dependencies": {
"promise-limit": "^2.7.0",
"promise-retry": "^2.0.1"
},
"devDependencies": {
"@types/promise-retry": "^1.1.3",
"fetch-mock": "^9.11.0",
"typescript": "^4.3.5"
}
}