-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.48 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
94
95
96
97
{
"name": "@paytheory/pay-theory-ui",
"version": "0.2.84-0",
"description": "Made with create-react-library",
"author": "austinzani",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pay-theory/pay-theory-ui.git"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"font": "dist/Font/index.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "webpack",
"start": "parcel serve src/index.js",
"format": "prettier-eslint --write \"$PWD/src/**/*.js\"",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"ops-test": "react-scripts test --watchAll=false --env=jest-environment-jsdom-sixteen --coverage",
"codacy-download": "curl -Ls https://coverage.codacy.com/get.sh > get.sh && chmod +x get.sh",
"codacy-coverage": "bash get.sh report -r coverage/lcov.info",
"test-report": "npm run codacy-download && npm run codacy-coverage",
"test:build": "run-s build",
"test:lint": "eslint . --fix",
"test:unit": "cross-env CI=1 react-scripts test --env=jest-environment-jsdom-sixteen",
"test:watch": "react-scripts test --env=jest-environment-jsdom-sixteen",
"predeploy": "npm install && npm run build",
"prepare-commit": "npm run test:lint && npm run build",
"post-commit": "npm run ops-test && npm run test-report",
"predeploy-package": "npm version prepatch && git push",
"deploy": "npm run post-commit && npm run predeploy-package && npm publish --tag process.env.tag || development",
"deploy-alpha": "npm run post-commit && npm run predeploy-package && npm publish --tag alpha",
"deploy-beta": "npm run post-commit && npm run predeploy-package && npm publish --tag beta",
"deploy-release": "npm run post-commit && npm run predeploy-package && npm publish --tag release"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"jest-environment-jsdom-sixteen": "^2.0.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.9.3",
"react-scripts": "^5.0.1",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"qrcode.react": "^3.1.0",
"react-stately": "3.23.0",
"react-aria": "3.25.0"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/pay-theory/pay-theory-ui/issues"
},
"jest": {
"coverageReporters": [
"text",
"lcov",
"html"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"homepage": "https://github.com/pay-theory/pay-theory-ui#readme",
"peerDependencies": {
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.0",
"webfontloader": "^1.6.28"
}
}