-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.7 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "codify-node",
"version": "1.3.1",
"description": "Generates 1D, 2D, and composite barcodes in png, svg, or eps formats.",
"scripts": {
"test:e2e": "rimraf test/e2e/__rendered__/* && jest test/e2e",
"test:unit": "jest src --collectCoverage true",
"test": "npm run test:unit && npm run test:e2e",
"build": "tsc -p tsconfig.build.json && npm run binary:install",
"bump": "bump",
"binary:install": "node-pre-gyp install --fallback-to-build",
"binary:rebuild": "node-pre-gyp rebuild package",
"install": "node ./scripts/install.js && npm run binary:rebuild",
"semantic-release": "semantic-release"
},
"main": "./dist/index.js",
"author": "Matej Kos <https://github.com/bojovypstros>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/bojovypstros/codify.git"
},
"keywords": [
"barcode",
"code 128",
"qr",
"ean",
"upc",
"isbn",
"pdf417",
"gs1",
"aztec",
"data matrix",
"usps onecode",
"codify"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.7",
"git-clone": "0.2.0",
"gunzip-maybe": "1.4.2",
"nan": "2.14.2",
"node-fetch": "2.6.7",
"pngjs": "6.0.0",
"replace-in-file": "6.0.0",
"rimraf": "3.0.0",
"tar-fs": "2.1.1"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@semantic-release/github": "8.0.6",
"@types/jest": "29.2.0",
"@types/jest-image-snapshot": "5.1.0",
"@types/lodash": "4.14.186",
"@types/pngjs": "6.0.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"codecov": "3.8.2",
"eslint": "7.32.0",
"jest": "29.2.1",
"jest-image-snapshot": "5.2.0",
"ts-jest": "29.0.3",
"typescript": "4.8.4",
"conventional-changelog-conventionalcommits": "5.0.0",
"semantic-release": "19.0.5",
"version-bump-prompt": "6.1.0"
},
"peerDependencies": {
"@mapbox/node-pre-gyp": "1.0.2"
},
"jest": {
"setupFilesAfterEnv": [
"./test/setup.ts"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"binary": {
"module_name": "codify",
"module_path": "./bin/binding/bin/",
"package_name": "{module_name}_{platform}_{arch}_{node_abi}.tar.gz",
"host": "https://github.com/bojovypstros/codify/releases/download/"
}
}