-
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.28 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.28 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": "@cotep/errors",
"version": "3.2.5",
"description": "Handle errors properly on your program. You have a proper stacktrace if you do it right!",
"main": "./lib/src/Errors.js",
"scripts": {
"build": "tsc",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"runExample": "npm run build && cd ./lib && node example/main.js",
"tsc": "tsc"
},
"keywords": [
"node.js",
"Error",
"Stacktrace"
],
"author": "COTEP",
"contributors": [
{
"name": "Gregory Neut <g.neut@cotep.com>"
},
{
"name": "Alrick Emilien <a.emilien@cotep.com>"
}
],
"repository": {
"type": "git",
"url": "https://github.com/COTEP-DEV/Errors.git"
},
"license": {
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
},
"homepage": "https://github.com/COTEP-DEV/Errors#readme",
"dependencies": {
"@types/node": "^12.7.5",
"colors": "^1.3.3"
},
"devDependencies": {
"@angular/compiler": "^8.2.7",
"@angular/core": "^8.2.7",
"codelyzer": "^5.1.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=8.0.0"
},
"os": [
"linux",
"darwin"
]
}