-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
122 lines (122 loc) · 3.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "symbology",
"version": "4.0.1",
"description": "🔖 Generates 1D, 2D, and composite barcodes in png, svg, or eps formats. Supports 50+ symbologies.",
"scripts": {
"ye": "node ./test.js",
"commit": "git-cz",
"release": "standard-version",
"lint": "eslint ./src",
"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 && npm run binary:rebuild",
"binary:install": "node-pre-gyp install --fallback-to-build",
"binary:rebuild": "node-pre-gyp rebuild package",
"install": "node ./scripts/install.js && npm run binary:install",
"install:rebuild": "rimraf bin && node ./scripts/install.js && npm run binary:rebuild",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Josh Shor <https://github.com/jshor>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/jshor/symbology.git"
},
"homepage": "https://symbology.dev",
"keywords": [
"barcode",
"code 128",
"qr",
"ean",
"upc",
"isbn",
"pdf417",
"gs1",
"aztec",
"data matrix",
"usps onecode"
],
"binary": {
"module_name": "symbology",
"module_path": "./bin/binding/bin/",
"remote_path": "{version}",
"package_name": "{module_name}_{platform}_{arch}_{node_abi}.tar.gz",
"host": "https://github.com/jshor/symbology/releases/download/"
},
"engines": {
"node": ">=14.0.0 <21.0.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"nan": "^2.14.2",
"node-fetch": "2",
"pngjs": "^6.0.0",
"replace-in-file": "^6.3.5",
"rimraf": "^3.0.2",
"tar": "^6.1.12"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.3",
"@types/jest-image-snapshot": "^5.1.0",
"@types/node": "^18.11.9",
"@types/pngjs": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vuepress/plugin-register-components": "^2.0.0-beta.53",
"codecov": "^3.8.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-image-snapshot": "^6.0.0",
"rollup": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"typescript": ">=3.0.0",
"vuepress": "^2.0.0-beta.53"
},
"peerDependencies": {
"@mapbox/node-pre-gyp": "^1.0.2"
},
"resolutions": {
"vuepress-vite": "2.0.0-beta.53"
},
"jest": {
"setupFilesAfterEnv": [
"./test/setup.ts"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"zintVersion": "89518c4"
}