forked from mooz/node-pdf-image
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "@cheggeng/pdf-image",
"version": "1.2.3",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/CheggEng/node-pdf-image"
},
"bugs": {
"url": "https://github.com/CheggEng/node-pdf-image/issues"
},
"homepage": "https://github.com/CheggEng/node-pdf-image#readme",
"dependencies": {},
"types": "./index.d.ts",
"scripts": {
"test": "mocha tests/test-main.js",
"lint": "eslint -c .eslintrc.json --ext .js index.js --fix",
"tsd": "tsd"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"mocha": "^9.1.4",
"tsd": "^0.14.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"tsd": {
"compilerOptions": {
"esModuleInterop": true
}
},
"files": [
"index.d.ts",
"/tests/*",
"index.js",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
]
}