-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.56 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
60
61
62
63
64
65
66
67
{
"name": "pdffiller-script",
"version": "1.0.1",
"description": "A configurable scripting engine for filling PDF forms.",
"main": "src/index.js",
"type": "module",
"keywords": [
"pdf",
"filler"
],
"author": {
"name": "Jamie Peabody",
"email": "[email protected]",
"url": "http://mergely.com"
},
"homepage": "https://github.com/wickedest/pdffiller-script",
"bugs": "https://github.com/wickedest/pdffiller-script/issues",
"license": "ISC",
"files": [
"bin",
"src",
"docs"
],
"engines": {
"node": ">=16"
},
"bin": {
"fill": "bin/fill.js",
"map": "bin/map.js"
},
"dependencies": {
"chalk": "^5.2.0",
"debug": "^4.3.4",
"js-yaml": "^3.14.1",
"pdffiller": "0.0.11",
"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",
"c8": "^7.13.0",
"chai": "^4.3.7",
"command-exists": "^1.2.9",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.40.0",
"husky": "^8.0.3",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"simple-mock": "^0.8.0"
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text-summary"
]
},
"scripts": {
"build": "npm run build:lint && npm run test && npm run build:doc",
"build:lint": "eslint .",
"build:doc": "npx jsdoc2md src/*.js > docs/API.md",
"test": "c8 mocha"
}
}