-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
51 lines (51 loc) · 1.11 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
48
49
50
51
{
"name": "citation",
"author": "Eric Mill <[email protected]",
"description": "Legal citation extractor. Standalone library, and optional HTTP API.",
"version": "0.9.0",
"license": "CC0-1.0",
"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",
"start": "node bin/cite-server"
},
"dependencies": {
"body-parser": "^1.15.0",
"errorhandler": "^1.4.3",
"express": "^4.13.4",
"method-override": "^2.3.5",
"minimist": "^1.2.0",
"nomar": "^1.1.0",
"parse5": "^2.1.5",
"walverine": "^0.0.7",
"xmldom": "^0.1.22"
},
"devDependencies": {
"deep-equal": "^1.0.1",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.0",
"gulp-gzip": "^1.2.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.5.2",
"nodeunit": "^0.9.1"
},
"engines": {
"node": ">=0.10"
},
"main": "./citation.js"
}