-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.15 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
{
"name": "allure-store",
"version": "1.0.0",
"description": "A flexible and extensible store for reading, writing, and transforming Allure test results",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
".idea/icon.svg",
"README.md",
"dist",
"!__*__"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"prepare": "husky || true",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "node scripts/esbuild.mjs",
"build": "npm run build:types && npm run build:js",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"lint:staged": "lint-staged",
"test": "node --require ts-node/register --test src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/allure-store.git"
},
"keywords": [
"allure"
],
"author": "Yaroslav Serhieiev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix-incubator/allure-store/issues"
},
"homepage": "https://github.com/wix-incubator/allure-store#readme",
"dependencies": {
"properties": "^1.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@eslint/js": "^9.13.0",
"@types/chai": "^4.0.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"chai": "^4.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.24.0",
"eslint": "~9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.10.0",
"typescript": "^5.6.3"
},
"browserslist": [
"node 16"
]
}