-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 2.19 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
{
"private": true,
"name": "save-to-google-pay-button",
"version": "1.0.0",
"description": "Save to Google Pay button component",
"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/save-to-google-pay-button"
},
"engines": {
"node": ">=8.0.0"
},
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.4",
"@angular/cli": "^12.2.4",
"@angular/compiler": "^12.2.4",
"@angular/compiler-cli": "^12.2.4",
"@angular/core": "^12.2.4",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^24.9.1",
"@types/react": "^16.14.3",
"@types/react-dom": "^16.9.10",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"concurrently": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"ng-packagr": "^12.2.1",
"prettier": "npm:@btmills/prettier@^2.2.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"rollup": "^2.38.4",
"rollup-plugin-dts": "^1.4.14",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^26.5.0",
"typescript": "4.3"
}
}