This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "@sumup/collector",
"sideEffects": false,
"version": "0.0.0-semantically-released",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"license": "Apache-2.0",
"scripts": {
"build": "rollup -c",
"compile": "tsc",
"commit": "git-cz",
"test": "jest --watch",
"test:ci": "jest --ci --coverage",
"lint": "foundry run eslint . --ext .js,.jsx,.json,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"prerelease": "yarn build",
"release": "foundry run semantic-release"
},
"dependencies": {
"tti-polyfill": "^0.2.2"
},
"devDependencies": {
"@sumup/foundry": "^5.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.5.0",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"cz-conventional-changelog": "3.3.0",
"jest": "^26.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^26.5.6",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": ">=16.8.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"foundry": {
"publish": true
}
}