-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
59 lines (59 loc) · 1.75 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
52
53
54
55
56
57
58
59
{
"name": "civil-services-us-senate",
"version": "1.1.0",
"description": "115th Congress Unites States Senate. Headshots, Legislator Data & Social Media Links ( JSON, XML, CSV, SQL, XLSX & YML formats )",
"license": "MIT",
"keywords": [
"US",
"United States",
"senate",
"senator",
"senators",
"data",
"government",
"congress",
"legislators",
"json",
"csv",
"yml",
"sql",
"xml",
"xlsx",
"headshots",
"pictures",
"photos",
"adress",
"phone",
"twitter",
"facebook",
"map"
],
"main": "data/senate.json",
"homepage": "https://civilserviceusa.github.io/us-senate/",
"repository": {
"type": "git",
"url": "git+https://github.com/civilserviceusa/us-senate.git"
},
"bugs": {
"url": "https://github.com/civilserviceusa/us-senate/issues"
},
"author": {
"name": "Peter Schmalfeldt",
"email": "me@peterschmalfeldt.com",
"url": "https://peterschmalfeldt.com"
},
"scripts": {
"json-to-yml": "./node_modules/.bin/json2yaml ./data/senate.json > ./data/senate.yml && echo '✓ updated data/senate.yml'",
"json-to-csv": "./node_modules/.bin/json2csv -i ./data/senate.json -o ./data/senate.csv && echo '✓ updated data/senate.csv'",
"json-to-xml": "node ./converters/json-to-xml.js && echo '✓ updated data/senate.xml'",
"csv-to-sql": "node ./converters/csv-to-sql.js && echo '✓ updated data/senate.sql'",
"convert": "npm run -s json-to-yml && npm run -s json-to-xml && npm run -s json-to-csv && npm run -s csv-to-sql && echo '\n☆ヽ(´▽`)ノ All Done \n'"
},
"devDependencies": {
"js2xmlparser": "^2.0.2",
"json2csv": "^3.7.3",
"json2yaml": "^1.1.0",
"object.values": "^1.0.4",
"stream-replace": "^1.0.0"
}
}