-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
91 lines (91 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
{
"name": "@paypal/sdk-client",
"version": "4.0.195",
"description": "Shared config between PayPal/Braintree.",
"main": "index.js",
"scripts": {
"babel": "babel ./server --ignore=node_modules --out-dir ./server",
"build": "npm run test && npm run doc & npm run babel",
"clean": "rimraf dist coverage",
"debug": "cross-env NODE_ENV=debug",
"doc": "esdoc",
"flow": "flow",
"flow-typed": "rm -rf ./flow-typed && flow-typed install",
"lint": "eslint src/ server/ *.js",
"reinstall": "rimraf flow-typed && rimraf node_modules && npm install && flow-typed install",
"release": "./publish.sh",
"release:major": "./publish.sh major",
"release:minor": "./publish.sh minor",
"release:patch": "./publish.sh patch",
"setup": "npm install && npm run flow-typed",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check .",
"test": "npm run format:check && npm run lint && npm run flow && npm run test:unit",
"webpack": "babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/webpack -- --progress",
"test:unit:watch": "vitest --coverage",
"test:unit": "vitest run --coverage",
"prepublishOnly": "npm run babel",
"postpublish": "rm -rf ./server && git checkout ./server",
"validate-codecov": "curl --data-binary @.github/codecov.yml https://codecov.io/validate",
"prepare": "husky install"
},
"files": [
"dist/",
"src/",
"server/",
"__sdk__.js",
"test/globals.js"
],
"browserslist": [
"IE >= 11",
"chrome >= 27",
"firefox >= 30",
"safari >= 7",
"opera >= 23"
],
"repository": {
"type": "git",
"url": "git://github.com/paypal/paypal-sdk-client.git"
},
"keywords": [
"template"
],
"license": "Apache-2.0",
"readmeFilename": "README.md",
"dependencies": {
"@krakenjs/beaver-logger": "^5.0.0",
"@krakenjs/belter": "^2.0.0",
"@krakenjs/cross-domain-utils": "^3.0.2",
"@krakenjs/jsx-pragmatic": "^3.0.0",
"@krakenjs/zalgo-promise": "^2.0.0",
"@paypal/sdk-constants": "^1.0.148",
"bowser": "^2.0.0"
},
"devDependencies": {
"@bunchtogether/vite-plugin-flow": "^1.0.2",
"@krakenjs/babel-config-grumbler": "^8.1.1",
"@krakenjs/eslint-config-grumbler": "^8.1.1",
"@krakenjs/grumbler-scripts": "^8.0.4",
"babel-core": "7.0.0-bridge.0",
"cheerio": "1.0.0-rc.9",
"cross-env": "^7.0.3",
"esdoc": "1.1.0",
"esdoc-flow-type-plugin": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"flow-bin": "0.155.0",
"flow-remove-types": "2.232.0",
"flow-typed": "^3.8.0",
"husky": "^8.0.1",
"jsdom": "^20.0.3",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^13.0.3",
"prettier": "2.8.8",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"vite": "^4.0.1",
"vitest": "^1.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}