forked from unitedstates/citation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (34 loc) · 812 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
{
"name": "citation",
"author": "Eric Mill <[email protected]",
"description": "Legal citation extractor. Standalone library, and optional HTTP API.",
"version": "0.6.4",
"license": "unlicense",
"keywords": ["congress", "laws", "legal", "citations", "us code", "regulations"],
"repository": {
"type": "git",
"url": "https://github.com/unitedstates/citation"
},
"bin": {
"cite": "./bin/cite",
"cite-server": "./bin/cite-server"
},
"scripts": {
"test": "nodeunit test"
},
"dependencies": {
"underscore": "*",
"xregexp": "*",
"express": "3.x",
"optimist": "*",
"walverine": "*"
},
"devDependencies": {
"nodeunit": "*",
"deep-equal": "*"
},
"engines": {
"node": ">=0.6"
},
"main": "./citation.js"
}