This repository was archived by the owner on Jun 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "giuseppe-reqres-plugin",
"version": "0.0.0-development",
"description": "giuseppe plugin that adds @Req and @Res from v1 back.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"clean": "del-cli ./build ./coverage",
"build": "npm run clean && tsc -p ./config/tsconfig.build.json",
"develop": "npm run clean && tsc -p .",
"lint": "tslint -c ./tslint.json -p ./config/tsconfig.build.json",
"test": "npm run lint && npm run clean && jest -c ./jest.json",
"test:watch": "npm run clean && jest -c ./jest.json --watch",
"typedoc": "del-cli ./docs && typedoc --ignoreCompilerErrors --out ./docs --mode file --tsconfig ./config/tsconfig.build.json ./src/",
"semantic-release": "semantic-release"
},
"keywords": [
"giuseppe",
"plugin",
"express",
"@Req",
"@Request",
"@Res",
"@Response"
],
"repository": {
"type": "git",
"url": "https://github.com/smartive/giuseppe-reqres-plugin.git"
},
"engines": {
"node": ">=9",
"npm": "*"
},
"author": "Christoph Bühler <christoph@smartive.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartive/giuseppe-reqres-plugin/issues"
},
"homepage": "https://smartive.github.io/giuseppe-reqres-plugin/",
"dependencies": {
"giuseppe": "^3.0.0"
},
"devDependencies": {
"@smartive/tslint-config": "^4.0.0",
"@types/jest": "^23.1.2",
"del-cli": "^1.1.0",
"jest": "^23.2.0",
"semantic-release": "^15.6.0",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"tsutils": "^2.27.1",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
}
}