-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
93 lines (93 loc) · 2.3 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
92
93
{
"name": "@paypal/example-components",
"version": "1.0.28",
"description": "Example component module for a component for unified PayPal/Braintree web sdk",
"main": "index.js",
"scripts": {
"flow-typed": "flow-typed install",
"flow": "flow",
"flow:build": "flow gen-flow-files ./src/index.js --out-dir ./dist/module",
"lint": "eslint src/ test/ *.js",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check .",
"test": "npm run format:check && npm run lint && npm run flow && npm run karma",
"karma": "cross-env NODE_ENV=test babel-node $(npm bin)/karma start",
"prepare": "husky install",
"release": "standard-version",
"postrelease": "git push && git push --follow-tags && npm publish"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": false
},
{
"type": "docs",
"hidden": false
},
{
"type": "style",
"hidden": false
},
{
"type": "refactor",
"hidden": false
},
{
"type": "perf",
"hidden": false
},
{
"type": "test",
"hidden": false
},
{
"type": "ci",
"hidden": true
}
]
},
"files": [
"src",
"__sdk__.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paypal/paypal-braintree-example-component.git"
},
"author": "dbrain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paypal/paypal-braintree-example-component/issues"
},
"homepage": "https://github.com/paypal/paypal-braintree-example-component#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@krakenjs/grumbler-scripts": "^8.0.4",
"cross-env": "^7.0.3",
"flow-bin": "0.155.0",
"flow-typed": "^3.8.0",
"husky": "^7.0.4",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"mocha": "^4",
"prettier": "2.7.1",
"standard-version": "^9.3.2"
},
"dependencies": {
"@paypal/sdk-client": "^4.0.166"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}