-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
{
"version": "0.0.1",
"name": "cucumber-applause-reporter",
"umd:name": "cucumber-applause-reporter",
"repository": "https://github.com/ApplauseOSS/cucumber-applause-reporter",
"description": "test result reporter for cucumber.js",
"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/ ./test/ --fix",
"lint-verify": "eslint ./src/ ./test/",
"build": "rollup -c --bundleConfigAsCjs",
"test": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" cucumber-js test/features/smoke/smoke.feature -p default"
},
"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.4",
"@types/node": "^22.7.5",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"rollup": "4.24.0",
"rollup-plugin-dts": "^6.0.2",
"ts-node": "10.9.2",
"tslib": "^2.7.0",
"typescript": "5.6.3",
"typescript-eslint": "^8.9.0"
},
"dependencies": {
"@cucumber/cucumber": "^11.0.1",
"@cucumber/messages": "^26.0.1",
"applause-reporter-common": "https://github.com/ApplauseOSS/applause-reporter-common#master",
"yarn": "^1.22.22"
}
}