-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.02 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": "calipers-pdf",
"version": "3.0.0",
"description": "PDF plugin for calipers.",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test nyc mocha -- test --recursive --timeout 15000",
"enforce": "nyc check-coverage --statement 100 --branch 100 --function 100 --lines 100",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/calipersjs/calipers-pdf.git"
},
"keywords": [
"image",
"size",
"pdf"
],
"author": "Marcus Gartner",
"license": "MIT",
"bugs": {
"url": "https://github.com/calipersjs/calipers/issues"
},
"homepage": "https://github.com/calipersjs/calipers-pdf",
"devDependencies": {
"chai": "^4.3.2",
"chai-as-promised": "^7.1.1",
"eslint": "^7.13.0",
"eslint-config-lob": "^5.2.0",
"nyc": "^15.1.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"poppler-simple": "^0.11.1"
},
"peerDependencies": {
"calipers": "2.x.x"
}
}