-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "irs-form-filler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"keywords": [
"irs",
"tax",
"pdf"
],
"author": {
"name": "Jamie Peabody",
"email": "[email protected]",
"url": "http://mergely.com"
},
"license": "ISC",
"homepage": "https://github.com/wickedest/irs-form-filler",
"bugs": "https://github.com/wickedest/irs-form-filler/issues",
"bin": "bin/exec.js",
"files": [
"bin",
"data",
"src",
"config.yaml",
"README.md",
"CONTRIBUTING.md"
],
"dependencies": {
"chalk": "^5.2.0",
"debug": "^4.3.4",
"md-to-pdf": "^5.2.4",
"pdffiller-script": "^1.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/prompt-cli": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.40.0",
"husky": "^8.0.3"
},
"scripts": {
"build": "npm run build:lint",
"build:lint": "eslint .",
"build:map": "./scripts/make-maps.sh",
"build:fetch": "./scripts/fetch",
"test": "echo done"
}
}