-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.2 KB
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
{
"private": true,
"name": "google-pay-button",
"version": "4.0.1",
"description": "Google Pay button component",
"main": "dist/GooglePayButton.js",
"types": "dist/GooglePayButton.d.ts",
"scripts": {
"lint": "eslint .",
"pretty": "prettier . --write --loglevel warn",
"pretty:check": "prettier . --check",
"build": "npm run lint && npm run pretty:check && scripts/build.sh && scripts/verify-build-outputs.sh",
"build:only": "scripts/build.sh",
"build:all": "npm run build && npm run build:examples",
"build:examples": "concurrently --kill-others-on-fail --names \"a,r,v\" \"npm run build:example:angular\" \"npm run build:example:react\" \"npm run build:example:vue\"",
"build:example:angular": "cd examples/angular && npm install --legacy-peer-deps && npm run build",
"build:example:react": "cd examples/react && npm install && npm run build",
"build:example:vue": "cd examples/vue && npm install && npm run build",
"test": "jest",
"prepublishOnly": "npm run test && npm run build",
"publish:all": "scripts/publish.sh"
},
"repository": {
"url": "https://github.com/google-pay/google-pay-button"
},
"engines": {
"node": ">=8.0.0"
},
"author": "socsieng@google.com",
"license": "Apache-2.0",
"dependencies": {
"@types/googlepay": "^0.7.11"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^24.9.1",
"@types/react": "^16.14.70",
"@types/react-dom": "^16.9.25",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"concurrently": "^5.3.0",
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.2.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.7.0",
"typescript-eslint": "^8.63.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"rollup": "^3.30.0",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-typescript2": "^0.37.0",
"ts-jest": "^29.4.11",
"typescript": "^4.9.5"
}
}