-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
25 lines (25 loc) · 847 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
{
"name": "qol-data-mecklenburg",
"version": "1.0.0",
"description": "data for the quality of life dashboard",
"main": "index.js",
"scripts": {
"test": "ava ./test/test.js",
"lower-csv": "for f in metric/*.csv; do sed -i -e 's/\\(.*\\)/\\L\\1/' $f ; done",
"sort-csv": "for f in metric/*.csv; do sort -n -o $f $f ; done",
"clean-csv": "export LC_NUMERIC=C && npm run lower-csv && npm run sort-csv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobinbradley/mecklenburg-quality-of-life-data.git"
},
"author": "Tobin Bradley",
"license": "MIT",
"bugs": {
"url": "https://github.com/tobinbradley/mecklenburg-quality-of-life-data/issues"
},
"homepage": "https://github.com/tobinbradley/mecklenburg-quality-of-life-data#readme",
"devDependencies": {
"ava": "^3.15.0"
}
}