-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.65 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
{
"name": "proxyprobe",
"version": "1.2.4",
"description": "Triage tool to egress traffic through your proxy and print all response codes, messages, body, etc.",
"author": {
"name": "Keith Robertson",
"email": "keithro@gmail.com",
"url": "https://github.com/keithrob"
},
"repository": "keithrob/proxyprobe",
"main": "dist/index.js",
"bin": {
"proxyprobe": "dist/index.js"
},
"scripts": {
"build": "cross-env npm run clean && cross-env babel ./src -d ./dist --extensions '.ts,.tsx'",
"clean": "rimraf dist",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "7.0.0-beta.40",
"@babel/core": "7.0.0-beta.40",
"@babel/node": "7.0.0-beta.40",
"@babel/preset-env": "7.0.0-beta.40",
"@babel/preset-react": "7.0.0-beta.40",
"@babel/preset-stage-3": "7.0.0-beta.40",
"@babel/preset-typescript": "7.0.0-beta.40",
"@babel/register": "7.0.0-beta.40",
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"babel-plugin-module-resolver": "^3.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1",
"cross-env": "^5.2.0",
"markdown-toc": "^1.2.0",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"tslint-react": "^3.2.0",
"typescript": "^2.6.1"
},
"dependencies": {
"argparse": "^1.0.10",
"chalk": "^2.4.1",
"typed-rest-client": "^1.0.7"
}
}