-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "@rheas/errors",
"version": "0.0.6",
"description": "Custom exception and error handling module of Rheas framework",
"main": "index.js",
"keywords": [
"rheas",
"express",
"framework",
"nodejs",
"laravel",
"server",
"library",
"router",
"routing"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"copypackage": "cp -rf package.json build",
"build": "tsc && npm run copypackage",
"copypackage_dev": "cp -rf package.json build_dev",
"build-dev": "tsc --outDir ./build_dev && npm run copypackage_dev"
},
"dependencies": {
"@rheas/contracts": "^0.0.11"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"jest": "^26.5.0",
"ts-jest": "^26.4.1",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rheas-io/errors.git"
},
"author": "Kalesh Kaladharan",
"license": "MIT",
"bugs": {
"url": "https://github.com/rheas-io/errors/issues"
},
"homepage": "https://github.com/rheas-io/errors#readme"
}