-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
{
"name": "pdfmake-wrapper",
"version": "2.1.3",
"description": "Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint src/ test/",
"build": "npm run build:client && npm run build:server && npm run create:packagejson && npm run copy:license",
"build:client": "tsc --project ./tsconfig.json",
"build:server": "tsc --project ./tsconfig.server.json",
"create:packagejson": "node ./scripts/create-package-json-lib.js",
"copy:license": "cp LICENSE dist/LICENSE",
"release": "standard-version && npm run build && npm run release:info",
"release:info": "echo \"GO TO dist/ DIRECTORY AND PUBLISH THE PACKAGE!!!!!\"",
"prepare": "husky install"
},
"author": "Insomniocode <insomniocode@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Lugriz/pdfmake-wrapper.git"
},
"homepage": "https://github.com/Lugriz/pdfmake-wrapper",
"license": "MIT",
"keywords": [
"pdfmake",
"pdfmake wrapper",
"pdf",
"generate pdf",
"pdf",
"document",
"pdf-generation",
"typescript",
"javascript"
],
"bugs": {
"email": "insomniocode@gmail.com",
"url": "https://github.com/Lugriz/pdfmake-wrapper/issues"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^23.3.14",
"@types/pdfmake": "^0.1.21",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"husky": "^5.2.0",
"jest": "^23.6.0",
"pdfmake": "^0.1.72",
"standard-version": "^9.5.0",
"ts-jest": "^23.10.5",
"typescript": "^3.9.10"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}