-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "perf-script",
"version": "0.0.1",
"main": "index.js",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"commit": "git-cz",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "mkdir -p __reports__ && jest --json --outputFile=__reports__/jest-results.json --ci --coverage --runInBand",
"lint": "foundry run eslint . --ext .js,.jsx,.json,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn lint --format junit -o __reports__/eslint-results.xml"
},
"dependencies": {
"@sumup/performance-observer": "^1.0.2",
"tti-polyfill": "^0.2.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@sumup/foundry": "^7.2.0",
"@types/jest": "^29.5.14",
"@types/tti-polyfill": "^0.2.4",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.4.5",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.28.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}