-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
{
"version": "1.1.0",
"name": "applause-reporter-common",
"umd:name": "applause-reporter-common",
"repository": "https://github.com/ApplauseOSS/applause-reporter-common",
"description": "test result reporter shared API methods",
"type": "module",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">= 20"
},
"scripts": {
"clean": "rm -rf ./dist/",
"lint": "eslint ./src/ --fix",
"lint-verify": "eslint ./src/",
"build": "rollup -c --bundleConfigAsCjs",
"test": "yarn jest",
"publish-verify": "npm publish --dry-run",
"all": "yarn install && yarn lint && yarn build && yarn test && yarn publish-verify"
},
"keywords": [
"Applause"
],
"devDependencies": {
"@eslint/js": "^9.12.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.4",
"@types/mailparser": "^3.4.4",
"@types/node": "^22.7.4",
"@types/validator": "^13.11.1",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "^3.29.5",
"rollup-plugin-dts": "^6.0.2",
"ts-jest": "^29.1.1",
"ts-node": "10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.8.1"
},
"dependencies": {
"axios": "^1.6.0",
"logform": "^2.6.0",
"mailparser": "^3.6.5",
"validator": "^13.11.0",
"winston": "^3.13.0",
"winston-transport": "^4.7.0",
"yarn": "^1.22.19"
}
}