-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 848 Bytes
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
{
"name": "us-code",
"version": "1.0.0",
"description": "Complete United States Code in structured JSON format",
"main": "index.js",
"scripts": {
"download": "bash scripts/download.sh",
"parse": "node scripts/parse-xml.js",
"validate": "node scripts/validate.js",
"update": "npm run download && npm run parse && npm run validate",
"test": "node --test test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CourtGPT/us-code.git"
},
"keywords": [
"us-code",
"federal-law",
"legal-data",
"open-source",
"government-data"
],
"author": "CourtGPT",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/CourtGPT/us-code/issues"
},
"homepage": "https://github.com/CourtGPT/us-code#readme",
"dependencies": {
"xml2js": "^0.6.2"
}
}