-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1004 Bytes
/
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
48
49
{
"name": "literapi",
"version": "0.3.2",
"description": "Literate testing for HTTP APIs using markdown",
"keywords": [
"testing",
"test",
"api",
"rest",
"http",
"documentation",
"docs",
"literate"
],
"homepage": "https://github.com/agnoster/literapi",
"author": "Isaac Wolkerstorfer <[email protected]>",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/agnoster/literapi.git"
},
"bin": {
"literapi": "./bin/literapi"
},
"preferGlobal": true,
"scripts": {
"test": "make tap"
},
"dependencies": {
"mocha": "~1.6.0",
"request": "~2.10",
"markdownstream": "0.0.3",
"jsonexp": "0.0.3",
"debug": "~0.7.0",
"async": "~0.1.22",
"underscore": "~1.4.2",
"optimist": "~0.3.5",
"hacktrace": "0.0.1"
},
"devDependencies": {
"express": "~3.0",
"should": "~1.2.0",
"gently": "~0.9.2"
},
"engines": {
"node": ">0.6.0",
"npm": "1.1.x"
}
}