-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
50
51
52
53
{
"name": "@ilovepdf/ilovepdf-js-core",
"author": {
"email": "[email protected]",
"name": "ILOVEPDF S.L.",
"url": "https://developer.ilovepdf.com/"
},
"license": "MIT",
"description": "ILovePDF Api - Core Library",
"version": "0.3.1",
"main": "dist/index.js",
"scripts": {
"build": "tsc && sed 's#dist/##' ./package.json > ./dist/package.json && cp README.md ./dist",
"test": "jest ./src --detectOpenHandles",
"upload-npm": "npm test && npm run build && cd ./dist && npm publish --access public"
},
"dependencies": {
"axios": "^1.7.2",
"form-data": "^3.0.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@jest/globals": "^29.7.0",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^22.0.0",
"babel-jest": "^29.7.0",
"dotenv": "^8.2.0",
"jest": "^29.7.0",
"typescript": "^5.5.4"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 30000
},
"repository": {
"type": "git",
"url": "https://github.com/ilovepdf/ilovepdf-js-core"
},
"keywords": [
"pdf",
"library",
"tool",
"merge",
"split",
"compress",
"convert"
]
}