-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "@smpx/koa-request",
"version": "1.0.3",
"description": "Handle basic tasks for koajs",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "true",
"lint": "eslint index.js",
"test": "yarn lint && yarn test-only",
"test-only": "true",
"compile": "tsc",
"prepublish": "yarn lint && yarn build && yarn test",
"postinstall": "node postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprix/koa-request.git"
},
"keywords": [
"request",
"koa",
"smpx",
"smartprix"
],
"author": "Hitesh Khandelwal",
"license": "ISC",
"bugs": {
"url": "https://github.com/smartprix/koa-request/issues"
},
"homepage": "https://github.com/smartprix/koa-request#readme",
"dependencies": {
"ip": "^2.0.1",
"koa-basic-auth": "^4.0.0",
"koa-body": "^5.0.0",
"koa-send": "^5.0.1",
"koa2-ratelimit": "^1.1.3",
"maxmind": "^4.3.20",
"tar": "^6.2.1",
"ua-parser-js": "^1.0.38"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-smartprix": "^3.5.4"
},
"eslintConfig": {
"extends": "smartprix",
"env": {
"node": true,
"browser": false
},
"rules": {
"vue/script-indent": 0
}
}
}