@aws-amplify/notifications
Advanced tools
Comparing version 2.0.63 to 2.0.64-unstable.4b3b13d.0
208
package.json
{ | ||
"name": "@aws-amplify/notifications", | ||
"version": "2.0.63", | ||
"description": "Notifications category of aws-amplify", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.mjs", | ||
"react-native": "./src/index.ts", | ||
"typings": "./dist/esm/index.d.ts", | ||
"sideEffects": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage", | ||
"test:watch": "jest -w 1 --watch", | ||
"build-with-test": "npm run clean && npm run build", | ||
"build:umd": "webpack && webpack --config ./webpack.config.dev.js", | ||
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs", | ||
"build:watch": "npm run build:esm-cjs -- --watch", | ||
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd", | ||
"clean": "npm run clean:size && rimraf dist lib lib-esm", | ||
"clean:size": "rimraf dual-publish-tmp tmp*", | ||
"format": "echo \"Not implemented\"", | ||
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage", | ||
"lint:fix": "eslint '**/*.{ts,tsx}' --fix", | ||
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 88.21" | ||
}, | ||
"typesVersions": { | ||
">=4.2": { | ||
"in-app-messaging": [ | ||
"./dist/esm/inAppMessaging/index.d.ts" | ||
], | ||
"push-notifications": [ | ||
"./dist/esm/pushNotifications/providers/index.d.ts" | ||
], | ||
"in-app-messaging/pinpoint": [ | ||
"./dist/esm/inAppMessaging/providers/pinpoint/index.d.ts" | ||
], | ||
"push-notifications/pinpoint": [ | ||
"./dist/esm/pushNotifications/providers/pinpoint/index.d.ts" | ||
] | ||
} | ||
}, | ||
"exports": { | ||
".": { | ||
"import": "./dist/esm/index.mjs", | ||
"require": "./dist/cjs/index.js", | ||
"react-native": "./src/index.ts" | ||
}, | ||
"./in-app-messaging": { | ||
"types": "./dist/esm/inAppMessaging/index.d.ts", | ||
"import": "./dist/esm/inAppMessaging/index.mjs", | ||
"require": "./dist/cjs/inAppMessaging/index.js", | ||
"react-native": "./src/inAppMessaging/index.ts" | ||
}, | ||
"./push-notifications": { | ||
"types": "./dist/esm/pushNotifications/index.d.ts", | ||
"import": "./dist/esm/pushNotifications/index.mjs", | ||
"require": "./dist/cjs/pushNotifications/index.js", | ||
"react-native": "./src/pushNotifications/index.ts" | ||
}, | ||
"./in-app-messaging/pinpoint": { | ||
"types": "./dist/esm/inAppMessaging/providers/pinpoint/index.d.ts", | ||
"import": "./dist/esm/inAppMessaging/providers/pinpoint/index.mjs", | ||
"require": "./dist/cjs/inAppMessaging/providers/pinpoint/index.js", | ||
"react-native": "./src/inAppMessaging/providers/pinpoint/index.ts" | ||
}, | ||
"./push-notifications/pinpoint": { | ||
"types": "./dist/esm/pushNotifications/providers/pinpoint/index.d.ts", | ||
"import": "./dist/esm/pushNotifications/providers/pinpoint/index.mjs", | ||
"require": "./dist/cjs/pushNotifications/providers/pinpoint/index.js", | ||
"react-native": "./src/pushNotifications/providers/pinpoint/index.ts" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aws-amplify/amplify-js.git" | ||
}, | ||
"author": "Amazon Web Services", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/aws/aws-amplify/issues" | ||
}, | ||
"homepage": "https://docs.amplify.aws/", | ||
"files": [ | ||
"dist/cjs", | ||
"dist/esm", | ||
"src", | ||
"in-app-messaging", | ||
"push-notifications" | ||
], | ||
"dependencies": { | ||
"lodash": "^4.17.21", | ||
"tslib": "^2.5.0" | ||
}, | ||
"peerDependencies": { | ||
"@aws-amplify/core": "^6.1.0" | ||
}, | ||
"devDependencies": { | ||
"@aws-amplify/core": "6.7.3", | ||
"@aws-amplify/react-native": "1.1.6", | ||
"typescript": "5.0.2" | ||
}, | ||
"gitHead": "8a8097a71e5adcafb546e98cf0538ccb51ff8fbc" | ||
"name": "@aws-amplify/notifications", | ||
"version": "2.0.64-unstable.4b3b13d.0+4b3b13d", | ||
"description": "Notifications category of aws-amplify", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.mjs", | ||
"react-native": "./src/index.ts", | ||
"typings": "./dist/esm/index.d.ts", | ||
"sideEffects": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage", | ||
"test:watch": "jest -w 1 --watch", | ||
"build-with-test": "npm run clean && npm run build", | ||
"build:umd": "webpack && webpack --config ./webpack.config.dev.js", | ||
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs", | ||
"build:watch": "npm run build:esm-cjs -- --watch", | ||
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd", | ||
"clean": "npm run clean:size && rimraf dist lib lib-esm", | ||
"clean:size": "rimraf dual-publish-tmp tmp*", | ||
"format": "echo \"Not implemented\"", | ||
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage", | ||
"lint:fix": "eslint '**/*.{ts,tsx}' --fix", | ||
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 88.21" | ||
}, | ||
"typesVersions": { | ||
">=4.2": { | ||
"in-app-messaging": [ | ||
"./dist/esm/inAppMessaging/index.d.ts" | ||
], | ||
"push-notifications": [ | ||
"./dist/esm/pushNotifications/providers/index.d.ts" | ||
], | ||
"in-app-messaging/pinpoint": [ | ||
"./dist/esm/inAppMessaging/providers/pinpoint/index.d.ts" | ||
], | ||
"push-notifications/pinpoint": [ | ||
"./dist/esm/pushNotifications/providers/pinpoint/index.d.ts" | ||
] | ||
} | ||
}, | ||
"exports": { | ||
".": { | ||
"import": "./dist/esm/index.mjs", | ||
"require": "./dist/cjs/index.js", | ||
"react-native": "./src/index.ts" | ||
}, | ||
"./in-app-messaging": { | ||
"types": "./dist/esm/inAppMessaging/index.d.ts", | ||
"import": "./dist/esm/inAppMessaging/index.mjs", | ||
"require": "./dist/cjs/inAppMessaging/index.js", | ||
"react-native": "./src/inAppMessaging/index.ts" | ||
}, | ||
"./push-notifications": { | ||
"types": "./dist/esm/pushNotifications/index.d.ts", | ||
"import": "./dist/esm/pushNotifications/index.mjs", | ||
"require": "./dist/cjs/pushNotifications/index.js", | ||
"react-native": "./src/pushNotifications/index.ts" | ||
}, | ||
"./in-app-messaging/pinpoint": { | ||
"types": "./dist/esm/inAppMessaging/providers/pinpoint/index.d.ts", | ||
"import": "./dist/esm/inAppMessaging/providers/pinpoint/index.mjs", | ||
"require": "./dist/cjs/inAppMessaging/providers/pinpoint/index.js", | ||
"react-native": "./src/inAppMessaging/providers/pinpoint/index.ts" | ||
}, | ||
"./push-notifications/pinpoint": { | ||
"types": "./dist/esm/pushNotifications/providers/pinpoint/index.d.ts", | ||
"import": "./dist/esm/pushNotifications/providers/pinpoint/index.mjs", | ||
"require": "./dist/cjs/pushNotifications/providers/pinpoint/index.js", | ||
"react-native": "./src/pushNotifications/providers/pinpoint/index.ts" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aws-amplify/amplify-js.git" | ||
}, | ||
"author": "Amazon Web Services", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/aws/aws-amplify/issues" | ||
}, | ||
"homepage": "https://docs.amplify.aws/", | ||
"files": [ | ||
"dist/cjs", | ||
"dist/esm", | ||
"src", | ||
"in-app-messaging", | ||
"push-notifications" | ||
], | ||
"dependencies": { | ||
"lodash": "^4.17.21", | ||
"tslib": "^2.5.0" | ||
}, | ||
"peerDependencies": { | ||
"@aws-amplify/core": "6.7.4-unstable.4b3b13d.0+4b3b13d" | ||
}, | ||
"devDependencies": { | ||
"@aws-amplify/core": "6.7.4-unstable.4b3b13d.0+4b3b13d", | ||
"@aws-amplify/react-native": "1.1.7-unstable.4b3b13d.0+4b3b13d", | ||
"typescript": "5.0.2" | ||
}, | ||
"gitHead": "4b3b13d62be701a327c00dc720c3f2577db85300" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
752424
1
1