-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 995 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
50
{
"name": "lithttp",
"description": "Literate HTTP",
"keywords": [
"literate",
"http",
"markdown",
"curl",
"json",
"peg"
],
"version": "0.0.12",
"repository": {
"type": "git",
"url": "git://github.com/for-GET/literate-http.git"
},
"licenses": [
{
"type": "Unlicense",
"url": "http://unlicense.org/UNLICENSE"
}
],
"bin": {
"lithttp-to-ast": "bin/to-ast.coffee",
"lithttp-from-ast": "bin/from-ast.coffee"
},
"scripts": {
"prepublish": "make prepublish",
"test": "make test"
},
"dependencies": {},
"optionalDependencies": {
"api-pegjs": "~0.4.18",
"coffee-script": "~1.7.1"
},
"devDependencies": {
"chai": "~1.9.1",
"coffeelint": "~1.5.1",
"lodash": "~2.4.1",
"mocha": "~1.20.0",
"testem": "~0.6.16"
},
"publishConfig": {
"bin": {
"lithttp-to-ast": "bin/to-ast.js",
"lithttp-from-ast": "bin/from-ast.js"
},
"optionalDependencies": {}
}
}