-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.64 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
{
"name": "@smartbear/one-report-publisher",
"version": "0.8.0",
"description": "Publish Test Results to SmartBear OneReport",
"type": "module",
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"files": [
"dist/cjs",
"dist/esm"
],
"module": "dist/esm/src/index.js",
"jsnext:main": "dist/esm/src/index.js",
"exports": {
".": {
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
}
},
"bin": {
"one-report-publisher": "bin/one-report-publisher.cjs"
},
"scripts": {
"build:cjs": "tsc --build tsconfig.build-cjs.json && cp package.cjs.json dist/cjs/package.json",
"build:esm": "tsc --build tsconfig.build-esm.json",
"build:action": "esbuild src/action/index.ts --bundle --platform=node --outfile=action/index.cjs",
"build": "npm run build:cjs && npm run build:esm && npm run build:action",
"test": "npm run mocha:esm && npm run mocha:cjs",
"mocha:esm": "mocha",
"mocha:cjs": "npm run build:cjs && mocha --config .mocharc-cjs.cjs dist/cjs/test",
"prepublishOnly": "npm run build",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test",
"upgrade": "npm-check-updates --upgrade",
"prepare": "husky install",
"pretty-quick-staged": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git://github.com/SmartBear/one-report-publisher.git"
},
"keywords": [
"cucumber",
"steps",
"regexp",
"regex"
],
"author": "SmartBear",
"license": "MIT",
"bugs": {
"url": "https://github.com/SmartBear/one-report-publisher/issues"
},
"homepage": "https://github.com/SmartBear/one-report-publisher#readme",
"devDependencies": {
"@actions/core": "1.9.0",
"@types/mocha": "9.1.1",
"@types/node": "18.0.1",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"esbuild": "0.14.48",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "8.0.1",
"mocha": "10.0.0",
"mocha-junit-reporter": "2.0.2",
"npm-check-updates": "15.0.3",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"ts-node": "10.8.2",
"typescript": "4.7.4"
},
"directories": {
"test": "test"
},
"dependencies": {
"@cucumber/ci-environment": "9.0.4",
"@types/adm-zip": "0.5.0",
"adm-zip": "0.5.9",
"commander": "9.3.0",
"fast-glob": "3.2.11",
"source-map-support": "0.5.21"
}
}