forked from LinkedInAttic/sepia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (43 loc) · 1.2 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
{
"name": "sepia",
"author": "Avik Das <[email protected]>",
"version": "1.0.4",
"description": "A VCR-like module that records HTTP interactions and plays them back for speed and reliability",
"keywords": [
"http",
"testing"
],
"homepage": "https://github.com/linkedin/sepia",
"bugs": "https://github.com/linkedin/sepia/issues",
"repository": {
"type": "git",
"url": "https://github.com/linkedin/sepia.git"
},
"license": "Apache",
"contributors": [
"Vlad Shlosberg (https://github.com/vshlos)",
"Ethan Goldblum (https://github.com/egoldblum)",
"Shao-Hua Kao (https://github.com/ethankao)",
"Deepank Gupta (https://github.com/deepankgupta)",
"Priyanka Salvi (http://www.linkedin.com/in/coolsmartgalpriyankanew)",
"Ashima Atul (https://github.com/ashimaatul)"
],
"dependencies": {
"levenshtein": "1.0.2"
},
"devDependencies": {
"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"
}
}