-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "election-helpers",
"version": "0.1.0",
"description": "Election helpers",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "npx jsdoc index.js -c ./jsdoc.config.json -d ./docs --verbose;npm run markdown",
"serve": "npx http-serve docs",
"watch": "watch 'npm run docs' .",
"markdown": "npx jsdoc-to-markdown index.js > docs.md",
"publish": "npm docs;gh-pages -d docs -b gh-pages",
"release": "npx release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejfox/election-helpers.git"
},
"keywords": [
"elections",
"data"
],
"author": "EJ Fox <ejfox@ejfox.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ejfox/election-helpers/issues"
},
"homepage": "https://github.com/ejfox/election-helpers#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"gh-pages": "^4.0.0",
"jsdoc-baseline": "^0.1.5",
"jsdoc-template": "^1.2.0",
"jsdoc-to-markdown": "^7.1.1",
"watch": "^1.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}