-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.97 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.97 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "microservice-proxy",
"version": "1.3.0",
"description": "Simple proxy for your microservices based on servie and path-to-regexp",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"bin": "dist/bin.js",
"scripts": {
"prettier": "prettier --write",
"format": "npm run prettier -- \"{.,src/**}/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
"build": "rimraf dist/ && tsc",
"specs": "jest --coverage",
"test": "npm run lint && npm run build && npm run specs",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/serviejs/microservice-proxy.git"
},
"keywords": [
"microservice",
"service",
"proxy",
"http",
"micro",
"servie",
"http2"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/serviejs/microservice-proxy/issues"
},
"homepage": "https://github.com/serviejs/microservice-proxy",
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"\\.tsx?$": "ts-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,yml,yaml}": [
"npm run prettier",
"git add"
]
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"husky": "^3.0.9",
"jest": "^24.8.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.0.3"
},
"dependencies": {
"arg": "^4.1.0",
"path-to-regexp": "^5.0.0",
"popsicle-transport-http": "^1.0.2",
"servie": "^4.2.1",
"servie-http": "^2.0.1",
"servie-url": "^1.0.1"
}
}