-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "@pallad/common-errors",
"version": "2.2.0",
"description": "Common domain errors",
"main": "compiled/index.js",
"types": "compiled/index.d.ts",
"directories": {
"test": "test"
},
"devDependencies": {
"@pallad/scripts": "^3.0.0",
"@types/node": "^18",
"@types/sinon": "^10",
"sinon": "^14",
"barrelsby": "^2.5.1"
},
"files": [
"compiled"
],
"scripts": {
"test": "./node_modules/.bin/pallad-scripts test",
"compile": "npm run generate-barrels && ./node_modules/.bin/pallad-scripts compile",
"lint": "./node_modules/.bin/pallad-scripts lint",
"prepublishOnly": "npm run compile",
"generate-barrels": "./node_modules/.bin/barrelsby -l all --delete -d ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pallad-ts/common-errors.git"
},
"keywords": [
"errors",
"common",
"domain",
"errors"
],
"author": "Łukasz Kużyński <lukasz.kuzynski@gmail.com> (http://wookieb.pl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pallad-ts/common-errors/issues"
},
"homepage": "https://github.com/pallad-ts/common-errors#readme"
}