-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 930 Bytes
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
{
"name": "express-split",
"version": "0.1.2",
"description": "Express middleware for split and AB testing",
"main": "express-split.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guyb7/express-split.git"
},
"keywords": [
"express",
"split",
"ab",
"testing",
"mysql",
"in-memory",
"node",
"npm"
],
"author": "Guy Brukhis <guy.br7@gmail.com> (http://guyb7.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/guyb7/express-split/issues"
},
"homepage": "https://github.com/guyb7/express-split#readme",
"devDependencies": {
"chai": "^3.5.0",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"supertest": "^1.2.0"
},
"dependencies": {
"handlebars": "^4.0.5",
"uuid": "^3.0.0"
}
}