This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "simple-proxy",
"version": "0.2.4",
"description": "Simple HTTP proxy for node.js",
"keywords": [
"http",
"proxy",
"simple"
],
"homepage": "https://github.com/ripe-tech/simple-proxy#readme",
"bugs": {
"url": "https://github.com/ripe-tech/simple-proxy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ripe-tech/simple-proxy.git"
},
"license": "Apache-2.0",
"author": "Platforme",
"main": "app.js",
"files": [
"app.js",
"lib/**/*.js",
"test/**/*.js"
],
"scripts": {
"dev": "nodemon app.js",
"lint": "eslint \"./**/*.js\"",
"lint-fix": "eslint \"./**/*.js\" --fix",
"prettier": "prettier \"./**/*.{js,json}\" --write",
"pretty": "npm run prettier && npm run lint-fix",
"start": "node app.js",
"test": "mocha --recursive",
"upgrade": "npx sort-package-json && ncu -u"
},
"dependencies": {
"consola": "^2.15.3",
"express": "^4.18.1",
"hive-js-util": "^0.4.1",
"request": "^2.88.2",
"yonius": "^0.11.7"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-hive": "^0.5.8",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": ">=10.0.0 && <10.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.16",
"npm-check-updates": "^13.0.3",
"prettier": "^2.6.2",
"prettier-config-hive": "^0.1.7",
"sort-package-json": "^1.57.0"
}
}