-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "httpism",
"version": "3.26.0",
"description": "HTTP client with middleware and good defaults",
"main": "index.js",
"dependencies": {
"base-64": "0.1.0",
"debug": "4.1.1",
"end-of-stream": "1.4.4",
"fs-promise": "2.0.3",
"global": "4.4.0",
"https-proxy-agent": "3.0.0",
"mime-types": "2.1.24",
"proxy-from-env": "1.0.0",
"random-string": "0.2.0",
"tough-cookie": "3.0.1",
"underscore": "1.9.1"
},
"devDependencies": {
"basic-auth": "2.0.1",
"basic-auth-connect": "1.0.0",
"body-parser": "1.19.0",
"browserify": "16.5.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"electron": "6.0.12",
"es-check": "^5.0.0",
"es6-promise": "4.2.8",
"eslint": "6.5.1",
"eslint-config-standard": "14.1.0",
"eslint-plugin-es5": "1.4.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"express": "4.17.1",
"fake-xml-http-request": "2.0.1",
"form-data": "2.5.1",
"http-proxy": "1.18.0",
"karma": "4.4.1",
"karma-browserify": "6.1.0",
"karma-browserstack-launcher": "1.5.1",
"karma-chrome-launcher": "3.1.0",
"karma-electron-launcher": "^0.2.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-server-side": "1.8.0",
"mocha": "6.2.2",
"multiparty": "4.2.1",
"qs": "6.9.0",
"server-destroy": "1.0.1",
"standard": "14.3.1",
"uglify-js": "3.6.3",
"url-template": "2.0.8",
"watchify": "3.11.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test-mocha && npm run test-browser -- --single-run --browsers Electron && eslint . && yarn test-es5",
"test-browser": "karma start",
"test-es5": "yarn webpack-build && es-check es5 _httpism.js && rm _httpism.js",
"test-mocha": "DEBUG=httpism* mocha",
"webpack-build": "webpack-cli browser.js --mode production --output _httpism.js",
"size": "yarn webpack-build && uglifyjs --compress --mangle -- _httpism.js > _httpism.min.js && gzip < _httpism.min.js > _httpism.min.js.gz && ls -lh _httpism.* && rm _httpism.*"
},
"repository": {
"type": "git",
"url": "https://github.com/featurist/httpism.git"
},
"keywords": [
"http",
"rest"
],
"author": {
"email": "[email protected]",
"name": "Tim Macfarlane",
"url": "http://blog.refractalize.org/"
},
"contributors": [
{
"name": "Josh Chisholm",
"email": "[email protected]",
"url": "http://featurist.co.uk/"
}
],
"license": "BSD",
"browser": "browser.js"
}