-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 KB
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
{
"name": "abproxy",
"version": "0.0.4",
"description": "Inject A/B tests into a proxied server response.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"compile": "babel -d dist/ src/",
"prepublish": "npm run compile",
"bump": "npm version patch -m 'bump to v%s' && npm publish && git push --follow-tags"
},
"bin": {
"abproxy": "./dist/bin/abproxy.js"
},
"keywords": [
"proxy",
"A/B"
],
"author": "casecode <casey.r.white@gmail.com>",
"contributors": [
"Tom Fuertes <tomfuertes@gmail.com>"
],
"license": "MIT",
"dependencies": {
"commander": "^2.8.1",
"connect": "^3.4.0",
"harmon": "^1.3.1",
"http-proxy": "^1.11.1",
"inquirer": "^0.9.0",
"jsonfile": "^2.2.1",
"liftoff": "^2.2.0",
"livereload": "^0.3.7",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-plugin-object-assign": "^1.2.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-eslint": "^1.1.1",
"gulp-sequence": "^0.4.1",
"rimraf": "^2.4.2"
}
}