forked from unitedstates/citation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (48 loc) · 1020 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": "citation",
"author": "Eric Mill <[email protected]",
"description": "Legal citation extractor. Standalone library, and optional HTTP API.",
"version": "0.7.1",
"license": "cc0",
"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": {
"walverine": "*",
"express": "4.x",
"body-parser": "*",
"method-override": "*",
"errorhandler": "*",
"optimist": "*"
},
"devDependencies": {
"deep-equal": "*",
"gulp": "^3.6.2",
"gulp-browserify": "^0.5.0",
"gulp-gzip": "0.0.8",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^0.2.1",
"nodeunit": "*"
},
"engines": {
"node": ">=0.10"
},
"main": "./citation.js"
}