@expo/push-errors 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +40 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # Push Errors
2
+
3
+ `@expo/push-errors` is a small library for shared type definitions and other
4
+ code related to reading and writing Push Receipts for Push Notifications.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@expo/push-errors",
3
+ "version": "1.0.0",
4
+ "description": "Contains type definitions and helper functions related to writing and reading push receipts.",
5
+ "main": "build/PushErrors.js",
6
+ "files": [
7
+ "build"
8
+ ],
9
+ "scripts": {
10
+ "build": "tsc",
11
+ "test": "jest --passWithNoTests",
12
+ "lint": "eslint src",
13
+ "prettier": "prettier --write 'src/**/*.ts'"
14
+ },
15
+ "author": "Expo",
16
+ "license": "MIT",
17
+ "jest": {
18
+ "rootDir": "src",
19
+ "testEnvironment": "node",
20
+ "preset": "ts-jest",
21
+ "globals": {
22
+ "ts-jest": {
23
+ "diagnostics": {
24
+ "pathRegex": "/__tests__/.*-test.tsx?$",
25
+ "warnOnly": true
26
+ }
27
+ }
28
+ }
29
+ },
30
+ "devDependencies": {
31
+ "@types/jest": "^28.1.4",
32
+ "eslint": "^8.19.0",
33
+ "eslint-config-universe": "^11.0.0",
34
+ "jest": "^28.1.2",
35
+ "prettier": "~2.7.1",
36
+ "ts-jest": "~28.0.5",
37
+ "typescript": "^4.0.2",
38
+ "@tsconfig/node18": "^1.0.1"
39
+ }
40
+ }