-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "replayer",
"author": "Avik Das <[email protected]>",
"version": "2.2.3",
"description": "A VCR-like module that records HTTP interactions and plays them back for speed and reliability; forked from https://github.com/linkedin/sepia",
"keywords": [
"http",
"testing"
],
"homepage": "https://github.com/aneilbaboo/replayer",
"bugs": "https://github.com/aneilbaboo/replayer/issues",
"repository": {
"type": "git",
"url": "https://github.com/aneilbaboo/replayer.git"
},
"license": "Apache",
"contributors": [
"Aneil Mallavarapu (https://github.com/aneilbaboo)",
"Jason Palmer (https://github.com/palmerj3)",
"Vlad Shlosberg, sepia (https://github.com/vshlos)",
"Ethan Goldblum, sepia (https://github.com/egoldblum)",
"Shao-Hua Kao, sepia (https://github.com/ethankao)",
"Deepank Gupta, sepia (https://github.com/deepankgupta)",
"Priyanka Salvi, sepia (http://www.linkedin.com/in/coolsmartgalpriyankanew)",
"Ashima Atul, sepia (https://github.com/ashimaatul)"
],
"dependencies": {
"levenshtein": "1.0.2",
"mime-types": "2.1.17"
},
"devDependencies": {
"request": "2.x",
"then-request": "2.x",
"lodash": "2.x",
"step": "0.x",
"jshint": "2.x",
"mocha": "1.x",
"should": "2.x",
"sinon": "1.x"
},
"scripts": {
"test": "jshint --config .jshintrc index.js src test examples && mocha test && sh examples/run-all-examples.sh"
},
"engines": {
"node": ">=0.8"
}
}