anyproxy/package.json

112 lines
3.3 KiB
JSON
Raw Normal View History

2014-08-08 16:30:53 +08:00
{
2014-08-11 16:43:14 +08:00
"name": "anyproxy",
2018-02-05 10:33:31 +08:00
"version": "4.0.5",
2017-12-01 21:30:49 +08:00
"description": "A fully configurable HTTP/HTTPS proxy in Node.js",
2014-08-11 16:43:14 +08:00
"main": "proxy.js",
2014-08-11 17:52:09 +08:00
"bin": {
2017-12-01 21:30:49 +08:00
"anyproxy-ca": "bin/anyproxy-ca",
"anyproxy": "bin/anyproxy"
2014-08-11 17:52:09 +08:00
},
2014-08-08 16:30:53 +08:00
"dependencies": {
2014-08-09 14:37:44 +08:00
"async": "~0.9.0",
2014-11-28 15:52:17 +08:00
"async-task-mgr": ">=1.1.0",
2015-07-07 17:31:56 +08:00
"body-parser": "^1.13.1",
2017-12-29 18:42:11 +08:00
"brotli": "^1.3.2",
2017-12-01 21:30:49 +08:00
"classnames": "^2.2.5",
"clipboard-js": "^0.3.3",
"co": "^4.6.0",
2014-08-13 11:51:39 +08:00
"colorful": "^2.1.0",
2017-12-01 21:30:49 +08:00
"commander": "~2.11.0",
"component-emitter": "^1.2.1",
"compression": "^1.4.4",
2017-12-01 21:30:49 +08:00
"es6-promise": "^3.3.1",
2014-08-27 17:42:42 +08:00
"express": "^4.8.5",
"fast-json-stringify": "^0.17.0",
2015-01-28 15:33:00 +08:00
"iconv-lite": "^0.4.6",
"ip": "^0.3.2",
2014-09-11 10:22:08 +08:00
"juicer": "^0.6.6-stable",
"mime-types": "2.1.11",
2017-12-01 21:30:49 +08:00
"moment": "^2.15.1",
"nedb": "^1.8.0",
"node-easy-cert": "^1.0.0",
2017-12-01 21:30:49 +08:00
"pug": "^2.0.0-beta6",
2014-10-21 11:18:55 +08:00
"qrcode-npm": "0.0.3",
2017-12-01 21:30:49 +08:00
"request": "^2.74.0",
2014-10-29 16:20:18 +08:00
"stream-throttle": "^0.1.3",
"svg-inline-react": "^1.0.2",
2017-12-01 21:30:49 +08:00
"whatwg-fetch": "^1.0.0",
"ws": "^5.1.0"
2014-08-19 15:31:28 +08:00
},
2014-11-14 17:26:49 +08:00
"devDependencies": {
2017-12-01 21:30:49 +08:00
"antd": "^2.5.0",
"autoprefixer": "^6.4.1",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-import": "^1.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
2017-12-01 21:30:49 +08:00
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
2017-12-01 21:30:49 +08:00
"babel-runtime": "^6.11.6",
"css-loader": "^0.23.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
2017-12-01 21:30:49 +08:00
"file-loader": "^0.9.0",
"https-proxy-agent": "^1.0.0",
2017-12-01 21:30:49 +08:00
"jasmine": "^2.5.3",
"koa": "^1.2.1",
"koa-body": "^1.4.0",
"koa-router": "^5.4.0",
"koa-send": "^3.2.0",
2017-12-01 21:30:49 +08:00
"less": "^2.7.1",
"less-loader": "^2.2.3",
"memwatch-next": "^0.3.0",
"node-simhash": "^0.1.0",
"nodeunit": "^0.9.1",
2017-12-01 21:30:49 +08:00
"phantom": "^4.0.0",
"postcss-loader": "^0.13.0",
"pre-commit": "^1.2.2",
"react": "^15.3.1",
"react-addons-perf": "^15.4.0",
"react-dom": "^15.3.1",
"react-json-tree": "^0.10.0",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.6.0",
"redux-saga": "^0.11.1",
"stream-equal": "0.1.8",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.7.1",
"url-loader": "^0.5.7",
"webpack": "^3.10.0",
2017-12-01 21:30:49 +08:00
"worker-loader": "^0.7.1"
2014-11-14 17:26:49 +08:00
},
2014-08-08 16:30:53 +08:00
"scripts": {
"prepublish": "npm run buildweb",
2017-12-01 21:30:49 +08:00
"test": "node test.js",
"lint": "eslint .",
2017-03-03 14:29:18 +08:00
"testserver": "node test/server/startServer.js",
2017-12-01 21:30:49 +08:00
"testOutWeb": "jasmine test/spec_outweb/test_realweb_spec.js",
"buildweb": "NODE_ENV=production webpack --config web/webpack.config.js --colors",
"webserver": "NODE_ENV=test webpack --config web/webpack.config.js --colors --watch",
2017-12-01 21:30:49 +08:00
"doc:serve": "node build_scripts/prebuild-doc.js && gitbook serve ./docs-src ./docs --log debug",
"doc:build": "./build_scripts/build-doc-site.sh"
2014-08-14 22:58:30 +08:00
},
2017-12-01 21:30:49 +08:00
"pre-commit": [
"lint"
],
2014-10-31 18:51:24 +08:00
"repository": {
2014-11-14 17:26:49 +08:00
"type": "git",
"url": "https://github.com/alibaba/anyproxy"
2014-10-31 18:51:24 +08:00
},
2014-09-09 10:53:53 +08:00
"author": "ottomao@gmail.com",
2017-12-25 21:22:07 +08:00
"license": "Apache-2.0"
2014-08-08 16:30:53 +08:00
}