-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.41 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "micro-post",
"version": "2.2.0",
"description": "Package to only accept POST request for microservices built with zeit/micro",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "xo && ava-ts",
"build": "tsc -p tsconfig.build.json",
"format": "xo --fix",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romuloalves/micro-post.git"
},
"keywords": [
"micro",
"http",
"https",
"get",
"microservice"
],
"author": {
"name": "Rômulo Alves",
"email": "me@romuloalv.es",
"url": "https://romuloalv.es"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/romuloalves/micro-post/issues"
},
"homepage": "https://github.com/romuloalves/micro-post#readme",
"xo": {
"space": true,
"semicolon": false,
"rules": {
"import/no-unresolved": [
2,
{
"ignore": [
"micro-post"
]
}
]
}
},
"devDependencies": {
"@types/micro": "^7.3.1",
"@types/node": "^12.6.8",
"@types/request-promise": "^4.1.42",
"@types/test-listen": "^1.1.0",
"ava": "^2.2.0",
"ava-ts": "^0.25.1",
"request": "^2.88.0",
"request-promise": "^4.2.0",
"test-listen": "^1.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"xo": "^0.24.0"
},
"dependencies": {
"micro": "^9.3.4"
}
}