-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
40 lines (40 loc) · 1004 Bytes
/
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
{
"author": "AnatolyI <[email protected]>",
"name": "poppler-simple",
"description": "A simple interface to poppler library",
"keywords": [
"poppler"
],
"version": "0.11.2",
"repository": {
"type": "git",
"url": "git://github.com/blackbeam/poppler-simple.git"
},
"scripts": {
"install": "(node-gyp rebuild) || (exit 1)",
"test": "./node_modules/mocha/bin/mocha && check-dts",
"clean": "((node-gyp clean) && (rm -rf node_modules)) || (exit 0)",
"build-debug": "(node-gyp configure --debug && node-gyp rebuild --debug) || (exit 0)"
},
"main": "./lib/poppler.js",
"types": "./lib/poppler.d.ts",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"nan": "^2.15.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/node": "^17.0.23",
"check-dts": "^0.6.6",
"mocha": "^9.2.2"
},
"optionalDependencies": {},
"mocha": {
"reporter": "spec",
"slow": "250",
"v8-expose-gc": true
}
}