-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
71 lines (71 loc) · 2.57 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
{
"private": true,
"name": "google-pay-button",
"version": "3.1.0",
"description": "Google Pay button component",
"main": "dist/GooglePayButton.js",
"types": "dist/GooglePayButton.d.ts",
"scripts": {
"lint": "eslint .",
"pretty": "node_modules/prettier/bin-prettier.js . --write --loglevel warn",
"pretty:check": "node_modules/prettier/bin-prettier.js . --check",
"build": "npm run lint && npm run pretty:check && scripts/build.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 && 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": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"@types/googlepay": "^0.7.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.2",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "^15.0.2",
"@angular/compiler": "^15.0.2",
"@angular/compiler-cli": "^15.0.2",
"@angular/core": "^15.0.2",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^24.9.1",
"@types/react": "^16.14.34",
"@types/react-dom": "^16.9.17",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"concurrently": "^5.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^4.3.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ng-packagr": "^15.0.1",
"prettier": "npm:@btmills/prettier@^2.7.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.2",
"rollup-plugin-dts": "^1.4.14",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^29.1.4",
"typescript": "^4.8.4"
}
}