Skip to content

Commit 1b89bc9

Browse files
committed
[dist] add semver and normalize package.json with --save-dev
1 parent c6dfb04 commit 1b89bc9

File tree

1 file changed

+31
-34
lines changed

1 file changed

+31
-34
lines changed

package.json

+31-34
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,44 @@
11
{
2-
"name" : "http-proxy",
3-
"version" : "1.10.0",
4-
5-
"repository" : {
6-
"type" : "git",
7-
"url" : "https://github.com/nodejitsu/node-http-proxy.git"
2+
"name": "http-proxy",
3+
"version": "1.10.0",
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/nodejitsu/node-http-proxy.git"
87
},
9-
10-
"description" : "HTTP proxying for the masses",
8+
"description": "HTTP proxying for the masses",
119
"author": "Nodejitsu Inc. <[email protected]>",
12-
"maintainers" : [
10+
"maintainers": [
1311
"yawnt <[email protected]>",
1412
"indexzero <[email protected]>"
1513
],
16-
17-
"main" : "index.js",
18-
19-
"dependencies" : {
20-
"eventemitter3" : "0.x.x",
21-
"requires-port" : "0.x.x"
14+
"main": "index.js",
15+
"dependencies": {
16+
"eventemitter3": "0.x.x",
17+
"requires-port": "0.x.x"
2218
},
2319
"devDependencies": {
24-
"mocha" : "*",
25-
"expect.js" : "*",
26-
"dox" : "*",
27-
"coveralls" : "*",
20+
"async": "*",
21+
"blanket": "*",
22+
"coveralls": "*",
23+
"dox": "*",
24+
"expect.js": "*",
25+
"mocha": "*",
2826
"mocha-lcov-reporter": "*",
29-
"blanket" : "*",
30-
"ws" : "~0.5.0",
31-
"socket.io" : "*",
32-
"socket.io-client" : "*",
33-
"async" : "*"
27+
"semver": "^4.3.3",
28+
"socket.io": "*",
29+
"socket.io-client": "*",
30+
"ws": "~0.5.0"
3431
},
35-
"scripts" : {
36-
"coveralls" : "mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js",
37-
"blanket" : { "pattern": "lib/http-proxy" },
38-
"test" : "mocha -R landing test/*-test.js",
39-
"test-cov" : "mocha --require blanket -R html-cov > cov/coverage.html"
32+
"scripts": {
33+
"coveralls": "mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js",
34+
"blanket": {
35+
"pattern": "lib/http-proxy"
36+
},
37+
"test": "mocha -R landing test/*-test.js",
38+
"test-cov": "mocha --require blanket -R html-cov > cov/coverage.html"
4039
},
41-
42-
"engines" : {
43-
"node" : ">=0.10.0"
40+
"engines": {
41+
"node": ">=0.10.0"
4442
},
45-
46-
"license" : "MIT"
43+
"license": "MIT"
4744
}

0 commit comments

Comments
 (0)