-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.67 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
{
"name": "@lob/pdffonts",
"version": "3.4.0",
"description": "Node bindings for Poppler's pdffonts CLI",
"main": "./lib/pdffonts.js",
"scripts": {
"build": "node-gyp rebuild",
"cover": "lcov -c -d build/Debug/obj.target/pdffonts/src -o coverage.info && lcov -e coverage.info '*pdffonts.cc' -o coverage.info",
"cover:html": "npm run cover && genhtml coverage.info -o coverage",
"coveralls": "npm run cover && cat coverage.info | coveralls",
"lint": "eslint .",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"test": "node-gyp --debug rebuild && mocha test --require test/setup.js --recursive --timeout 30000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lob/pdffonts.git"
},
"keywords": [
"poppler",
"pdffonts",
"pdf",
"fonts"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lob/pdffonts/issues"
},
"homepage": "https://github.com/lob/pdffonts#readme",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^4.19.1",
"eslint-config-lob": "^4.0.0",
"generate-changelog": "^1.8.0",
"mocha": "^6.2.2"
}
}