-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
93 lines (93 loc) · 2.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@paypal/common-components",
"version": "1.0.50",
"description": "PayPal common components, for integrating checkout products.",
"main": "dist/ui.js",
"scripts": {
"lint": "eslint --ext .js --ext .jsx src/ test/ *.js",
"flow-typed": "rm -rf flow-typed && flow-typed install",
"flow": "flow",
"karma": "cross-env NODE_ENV=test babel-node $(npm bin)/karma start",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check .",
"test": "npm run format:check && npm run lint && npm run flow && npm run karma",
"build": "npm run test && npm run webpack",
"release": "./scripts/publish.sh",
"release:patch": "./scripts/publish.sh patch",
"release:minor": "./scripts/publish.sh minor",
"release:major": "./scripts/publish.sh major",
"preversion": "./scripts/preversion.sh",
"version": "./scripts/version.sh",
"postversion": "./scripts/postversion.sh",
"clean": "rimraf dist coverage",
"reinstall": "rimraf flow-typed && rimraf node_modules && npm install && flow-typed install",
"debug": "cross-env NODE_ENV=debug",
"webpack": "babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/webpack -- --progress",
"eslint-find-rules": "eslint-find-rules --current .eslintrc.js --unused --plugin",
"prepare": "husky install"
},
"files": [
"src/",
"dist/",
"__sdk__.js",
"globals.js"
],
"browserslist": [
"IE >= 9",
"chrome >= 27",
"firefox >= 30",
"safari >= 5",
"opera >= 23"
],
"repository": {
"type": "git",
"url": "git://github.paypal.com/paypal/paypal-checkout.git"
},
"homepage": "https://developer.paypal.com/",
"keywords": [
"cross-domain",
"cross domain",
"components",
"component",
"krakenjs",
"kraken"
],
"license": "Apache-2.0",
"readmeFilename": "README.md",
"devDependencies": {
"@krakenjs/grumbler-scripts": "^8.0.4",
"@krakenjs/eslint-config-grumbler": "8.1.3",
"@krakenjs/sync-browser-mocks": "^3.0.0",
"babel-core": "^7.0.0-bridge.0",
"conventional-changelog-cli": "^2.0.11",
"cross-env": "^7.0.3",
"flow-bin": "0.135.0",
"flow-typed": "^3.8.0",
"fs-extra": "^4.0.2",
"husky": "^8.0.1",
"imagemagick": "^0.1.3",
"imgur": "^0.2.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"memory-fs": "^0.4.1",
"mocha": "^4.1.0",
"mocketeer": "^0.3.0",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.0",
"prettier": "2.7.1",
"serve": "^10.1.2"
},
"dependencies": {
"@paypal/sdk-client": "^4.0.166",
"@paypal/sdk-constants": "^1.0.128",
"@paypal/sdk-logos": "^2.1.0",
"@krakenjs/belter": "^2.0.0",
"@krakenjs/jsx-pragmatic": "^3.0.0",
"@krakenjs/post-robot": "^11.0.0",
"@krakenjs/zalgo-promise": "^2.0.0",
"@krakenjs/zoid": "^10.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}