-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.88 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
{
"name": "@basis-theory/basis-theory-react",
"version": "1.25.0",
"description": "Thin React wrapper for BasisTheory JS SDK",
"repository": "https://github.com/Basis-Theory/basis-theory-react",
"license": "Apache-2.0",
"author": {
"name": "Basis Theory",
"email": "[email protected]"
},
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"prettier": "@basis-theory/eslint-config/prettier",
"scripts": {
"build": "yarn clean && concurrently 'yarn build:module' 'yarn build:declarations' 'yarn build:package' --kill-others-on-fail",
"build:declarations": "tsc",
"build:module": "babel src --extensions .ts,.tsx --out-dir dist",
"build:package": "node prepare.js",
"lint": "eslint . --quiet --ignore-path .gitignore",
"lint:fix": "eslint . --fix --ignore-path .gitignore",
"clean": "rimraf dist",
"prepare": "yarn build",
"release": "semantic-release",
"test": "jest",
"test:cov": "jest --coverage",
"postinstall": "husky install"
},
"dependencies": {
"@basis-theory/basis-theory-js": "^4.18.0"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.21.5",
"@basis-theory/eslint-config": "^1.0.13",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@swc/core": "^1.3.77",
"@swc/jest": "^0.2.29",
"@testing-library/react": "^14.0.0",
"@types/chance": "^1.1.3",
"@types/jest": "^27.4.0",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.6",
"chance": "^1.1.8",
"concurrently": "^8.2.0",
"eslint": "^7.32.0",
"husky": "^8.0.3",
"jest": "^27.4.7",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"semantic-release": "^21.0.7",
"typescript": "^4.7.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"resolutions": {
"tmpl": "^1.0.5",
"semver-regex": "^3.1.4",
"tar": "^6.1.11",
"axios": "^0.21.4",
"ansi-regex": "^5.0.1",
"minimist": "^1.2.6",
"follow-redirects": "^1.14.8",
"npm": "^8.14.0",
"http-cache-semantics": "^4.1.1",
"json5@>=1.0.1 <2.0.0": "^1.0.2",
"minimatch@>=3.0.4 < 5.0.0": "^3.1.2",
"tough-cookie": "^4.1.3"
},
"engines": {
"node": ">=10.12.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}