-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 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
54
55
56
57
{
"name": "@hybiscus/web-api",
"version": "1.3.0",
"description": "Javascript client for interacting with Hybiscus PDF API",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"start": "npx tsc --watch",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepack": "npm run build",
"doc": "npm run build && rm -rf docs/* && jsdoc -c jsdoc.json -r lib/esm -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hybiscus-dev/nodejs-hybiscus-sdk.git"
},
"keywords": [
"pdf",
"api",
"hybiscus",
"reports",
"json",
"cloud"
],
"author": "ismailuddin",
"license": "ISC",
"bugs": {
"url": "https://github.com/hybiscus-dev/nodejs-hybiscus-sdk/issues"
},
"homepage": "https://github.com/hybiscus-dev/nodejs-hybiscus-sdk#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-jest": "^27.2.1",
"eslint": "^7.32.0",
"jest": "^27.2.1",
"jest-fetch-mock": "^3.0.3",
"jsdoc": "^3.6.7",
"typescript": "4.7"
},
"dependencies": {
"@jsbits/get-package-version": "^1.0.3",
"cross-fetch": "^3.1.4"
}
}