This repository was archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.18 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ts-httpexceptions",
"version": "4.1.0",
"description": "Provide exception for HTTP Rest API",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"prepublishOnly": "npm run doc:build && gflow release post",
"gflow-release-pre": "",
"semantic-release": "gflow release pre && semantic-release",
"semantic-release:dry-run": "semantic-release --dry-run",
"build": "tsc --project tsconfig.compile.json",
"prettier": "prettier '{src,test}/**/*.ts' --write",
"test": "npm run test:lint && NODE_ENV=test nyc mocha",
"test:unit": "mocha --recursive",
"test:lint": "tslint --project tsconfig.json",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls",
"tsc": "tsc --project tsconfig.json",
"doc:serve": "concurrently \"tsc --project tsconfig.compile.json -w\" \"docsify serve ./docs\" \"cd docs/_build && nodemon --delay 2.5 -e ts --watch ../../lib build-api.js\"",
"doc:build": "cd docs/_build && node build-api.js && cd ../.."
},
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/tsed.git"
},
"keywords": [
"Exceptions",
"Throwable",
"Rest",
"HTTP",
"Typescript"
],
"author": "Romakita",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypedProject/tsed/issues"
},
"homepage": "https://TypedProject.github.io/tsed",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.0.0",
"coveralls": "^3.0.3",
"docsify-cli": "^4.2.1",
"docsify-server-renderer": "^4.6.10",
"gflow": "^4.0.5",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"typescript": "^2.9.2"
},
"dependencies": {
"tslib": "^1.9.3"
},
"engines": {
"node": ">=8.0.0"
},
"release": {
"branch": "production"
}
}