-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
{
"name": "simple-pdf",
"version": "0.1.14",
"description": "A simple PDF parser based on PDF.js",
"main": "lib/index.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"build": "babel src -d lib",
"example:events": "npm run build && node examples/events.js",
"example:promises": "npm run build && node examples/promises.js",
"test": "jest",
"release": "./scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptcoded/simple-pdf.git"
},
"keywords": [
"pdf",
"pdf.js",
"parser"
],
"author": "Malcolm Nihlén <malcolm.nihlen@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scriptcoded/simple-pdf/issues"
},
"homepage": "https://github.com/scriptcoded/simple-pdf#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@types/jest": "^26.0.10",
"babel-preset-airbnb": "^5.0.0",
"dotenv-cli": "^3.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.4.2",
"release-it": "^13.7.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"canvas": "^2.6.1",
"pdfjs-dist": "^2.4.456",
"sharp": "^0.26.0"
}
}