-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 KB
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
{
"name": "@pallad/error-mapper",
"version": "1.2.1",
"description": "Generic error mapper",
"main": "dist/pallad-error-mapper.cjs.js",
"module": "dist/pallad-error-mapper.esm.js",
"exports": {
".": {
"module": "./dist/pallad-error-mapper.esm.js",
"default": "./dist/pallad-error-mapper.cjs.js"
},
"./package.json": "./package.json"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts",
"generate-barrels": "barrelsby -l replace -L --delete -d ./src",
"compile": "npm run generate-barrels && preconstruct build",
"prepublishOnly": "npm run compile",
"setup:dev": "preconstruct dev",
"setup:fix": "preconstruct fix"
},
"files": [
"dist"
],
"preconstruct": {
"exports": true,
"entrypoints": [
"./index.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pallad-ts/error-mapper.git"
},
"author": "Łukasz Kużyński <lukasz.kuzynski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pallad-ts/error-mapper/issues"
},
"homepage": "https://github.com/pallad-ts/error-mapper#readme",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@pallad/scripts": "^4",
"@preconstruct/cli": "^2.8.11",
"@types/sinon": "^17.0.4",
"barrelsby": "^2.5.1",
"sinon": "^17"
},
"dependencies": {
"@pallad/app-env": "^4",
"@pallad/builder": "^1.0.1"
}
}