-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 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
{
"name": "axios-proxy",
"version": "3.0.0",
"description": "Easy axios interface with proxy socks5 support by default",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "tsc; mocha ./test/**/*.test.js",
"build": "node_modules/.bin/tsc ",
"postinstall": "tsc",
"watch:build": "node_modules/.bin/nodemon --exec npm run build:dev",
"watch:test": "nodemon --watch 'src' --exec 'npm run test || echo '",
"build:dev": "npm run build",
"build:prod": "NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaesbit/axios-proxy.git"
},
"keywords": [
"axios",
"proxy",
"socks5"
],
"author": "@jaesbit",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaesbit/axios-proxy/issues"
},
"homepage": "https://github.com/jaesbit/axios-proxy#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.21",
"@types/commander": "^2.12.2",
"@types/jsonwebtoken": "^8.5.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.3",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"typescript-require": "^0.3.0"
},
"dependencies": {
"axios": "^0.21.1",
"socks-proxy-agent": "^6.0.0",
"typescript": "^4.3.5"
},
"nodemonConfig": {
"ignore": [
"docs/*",
"dist/*"
],
"delay": "1000"
}
}