We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 734769f commit 6e1ade0Copy full SHA for 6e1ade0
package.json
@@ -25,6 +25,10 @@
25
},
26
"main": "./lib/node-http-proxy",
27
"bin": { "node-http-proxy": "./bin/node-http-proxy" },
28
- "scripts": { "test": "vows test/*-test.js --spec && vows test/*-test.js --spec --https" },
+ "scripts": {
29
+ "test": "npm run-script test-http && npm run-script test-https",
30
+ "test-http": "vows --spec && vows --spec --target=secure",
31
+ "test-https": "vows --spec --source=secure && vows --spec --source=secure --target=secure"
32
+ },
33
"engines": { "node": "0.4.x || 0.5.x" }
34
}
0 commit comments