-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 950 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
{
"name": "census-csv-parser",
"version": "1.0.7",
"description": "tool for parsing census csvs into .json objects",
"homepage": "https://quaffingcode.com",
"main": "parser.js",
"scripts": {
"test": "node ./tests/testutils.js && node ./tests/testparser.js",
"test-util": "node ./tests/testutils.js",
"document-docdash": "jsdoc . -t ./node_modules/docdash -R README.md -d ./doc/",
"document-clean": "jsdoc . -t ./node_modules/clean-jsdoc-theme -d ./doc/ -R README.md",
"document": "jsdoc . -d ./doc/ -R README.md",
"document-minami": "jsdoc . -d ./doc/ -R README.md -t ./node_modules/minami -u ./tutorials/ && start ./doc/index.html"
},
"keywords": [
"census",
"csv",
"data"
],
"author": "klm127",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/klm127/census-csv-parser.git"
},
"dependencies": {},
"devDependencies": {
"minami": "^1.2.3"
}
}