-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
80 lines (80 loc) · 2.68 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
74
75
76
77
78
79
80
{
"name": "@paypal/sdk-release",
"version": "5.0.463",
"description": "Unified SDK wrapper module for tests, shared build config, and deploy.",
"main": "index.js",
"scripts": {
"validate-components": "babel-node test/validate-components",
"validate-components-for-publish": "babel-node test/validate-components-for-publish",
"validate-flat": "babel-node test/validate-flat",
"cdnify": "grabthar-cdnify --recursive --cdn='https://www.paypalobjects.com'",
"reinstall": "rm -f ./package-lock.json && rm -rf ./node_modules && npm install && git checkout package-lock.json && git checkout package.json",
"lint": "npm run format:check && eslint test/ *.js",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check .",
"karma": "cross-env NODE_ENV=test babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/karma start",
"test": "npm run lint && npm run validate-components && npm run validate-flat",
"add": "grabthar-add",
"upgrade": "grabthar-upgrade",
"remove": "grabthar-remove",
"release": "grabthar-release",
"release:dry-run": "DRY_RUN=true grabthar-release",
"postrelease": "npm run cdnify -- --commitonly",
"prepare": "husky install",
"flatten": "grabthar-flatten",
"prepublishOnly": "npm run validate-components-for-publish",
"cdn-check": "babel-node ./scripts/sdk-logos-cdn-check.js"
},
"files": [
"package-lock.json",
"index.js"
],
"engines": {
"node": ">=14.13.1",
"npm": ">=6"
},
"config": {
"engine-strict": true
},
"browserslist": [
"IE >= 9",
"chrome >= 27",
"firefox >= 30",
"safari >= 5",
"opera >= 23"
],
"repository": {
"type": "git",
"url": "git://github.com/paypal/paypal-sdk-release.git"
},
"keywords": [
"template"
],
"license": "Apache-2.0",
"readmeFilename": "README.md",
"devDependencies": {
"@krakenjs/grabthar-release": "^3.0.0",
"@krakenjs/grumbler-scripts": "^8.0.4",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"flowgen": "1.11.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.2.0",
"prettier": "2.8.4"
},
"dependencies": {
"@paypal/googlepay-components": "1.2.3",
"@paypal/applepay-components": "1.8.0",
"@paypal/card-components": "1.0.56",
"@paypal/checkout-components": "5.0.344",
"@paypal/common-components": "1.0.50",
"@paypal/example-components": "1.0.28",
"@paypal/funding-components": "1.0.32",
"@paypal/identity-components": "5.0.14",
"@paypal/legal-components": "1.2.2",
"@paypal/messaging-components": "1.64.12",
"@paypal/muse-components": "1.3.93",
"@paypal/sdk-client": "4.0.195"
}
}