This repository has been archived by the owner on Dec 18, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
80 lines (80 loc) · 2.05 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "labelmake",
"version": "2.0.23",
"description": "PDF generation library of declarative style programing.",
"main": "dist/labelmake.min.js",
"typings": "dist/types/labelmake.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run test -- --no-cache",
"lint": "tsc --noEmit",
"lint:watch": "tsc -w --noEmit",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hand-dot/labelmake.git"
},
"keywords": [
"PDF"
],
"author": "hand-dot <[email protected]> (https://github.com/hand-dot)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hand-dot/labelmake/issues"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/*.test.ts"
]
},
"homepage": "https://github.com/hand-dot/labelmake#readme",
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"bwip-js": "^2.1.3",
"pdf-lib": "^1.16.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/bwip-js": "^2.1.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.5",
"@types/pngjs": "^6.0.1",
"jest": "^27.5.1",
"jsqr": "^1.4.0",
"pdf2json": "^2.0.0",
"pngjs": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.5.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
}
}