-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "@boldcommerce/checkout-express-pay-library",
"version": "0.24.4",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint-ci": "yarn lint",
"test-ci": "yarn cover-test --ci --bail --verbose --forceExit --watchAll=false --detectOpenHandles",
"lint-staged": "lint-staged",
"cover-test": "jest --coverage --colors",
"tsc": "tsc",
"build": "yarn clean && ttsc && yarn copy-files",
"clean": "rm -rf ./lib/*.css",
"copy-files": "cp ./src/*.css ./lib/",
"docs": "npx typedoc --plugin typedoc-plugin-markdown --disableSources --hideBreadcrumbs --out docs",
"bump-fe": "./scripts/bump-fe.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:bold-commerce/checkout-express-pay-library.git"
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/jest": "^28.1.2",
"@types/node": "^20.12.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-junit": "^14.0.0",
"lint-staged": "^11.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.9.2",
"ttypescript": "^1.5.12",
"typedoc": "^0.22.18",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.7.4",
"typescript-transform-paths": "^3.3.1"
},
"peerDependencies": {
"@boldcommerce/checkout-frontend-library": "0.62.2"
},
"files": [
"lib/**/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix --max-warnings 0"
},
"dependencies": {
"@boldcommerce/checkout-frontend-library": "0.62.2",
"@paypal/paypal-js": "^7.0.1",
"@types/applepayjs": "^3.0.4",
"@types/googlepay": "^0.6.4"
}
}