-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "lifion-errors",
"version": "0.0.0",
"description": "A specialization of Error for propagation of errors through consumers",
"keywords": [
"error",
"exceptions",
"utilities"
],
"author": "Edgardo Avilés-López <[email protected]>",
"maintainers": [],
"contributors": [],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://[email protected]/lifion/lifion-errors.git"
},
"bugs": {
"url": "https://github.com/lifion/lifion-errors/issues"
},
"homepage": "https://github.com/lifion/lifion-errors#readme",
"main": "lib/index.js",
"files": [
"lib",
"!**/*.test.js"
],
"engines": {
"node": ">=14.19.1"
},
"scripts": {
"build-docs": "commons",
"build-types": "commons",
"check-types": "commons",
"clean-types": "commons",
"eslint": "commons",
"prepare": "commons",
"prepublishOnly": "npm run build-types && npm run prettier",
"prettier": "commons",
"test": "commons",
"version": "commons"
},
"dependencies": {
"deep-copy": "^1.4.2",
"fast-safe-stringify": "^2.1.1"
},
"devDependencies": {
"chance": "^1.1.8",
"core-commons": "^1.0.0-alpha.7"
}
}