forked from expo/expo-server-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.85 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
69
70
71
72
73
{
"name": "expo-push-api",
"version": "3.7.0",
"description": "A cross-platform JavaScript library for sending push notifications with Expo's notification service",
"type": "module",
"main": "./build/ExpoClient.js",
"types": "./build/ExpoClient.d.ts",
"exports": {
".": {
"import": "./build/ExpoClient.js",
"types": "./build/ExpoClient.d.ts"
}
},
"files": [
"build"
],
"scripts": {
"build": "tsc && esbuild --bundle src/ExpoClient.ts --format=esm --target=es2020 --outfile=build/ExpoClient.js",
"lint": "eslint src",
"prepare": "yarn build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"eslintConfig": {
"extends": "universe/node"
},
"jest": {
"coverageDirectory": "<rootDir>/../coverage",
"preset": "ts-jest/presets/default-esm",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.m?[tj]sx?$": [
"ts-jest",
{
"useESM": true
}
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vpctorr/expo-push-api-js.git"
},
"keywords": [
"expo",
"push-notifications"
],
"author": "vpctorr",
"license": "MIT",
"bugs": {
"url": "https://github.com/vpctorr/expo-push-api-js/issues"
},
"homepage": "https://github.com/vpctorr/expo-push-api-js#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"fetch-mock": "patch:fetch-mock@npm%3A9.11.0#~/.yarn/patches/fetch-mock-npm-9.11.0-6ebe138f97.patch",
"jest": "^29.7.0",
"p-limit": "^5.0.0",
"p-retry": "^6.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"yarn": ">=3.0.0"
},
"packageManager": "yarn@4.0.2"
}