-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
86 lines (86 loc) · 2.96 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
{
"name": "polish-vehicle-registration-certificate-decoder",
"version": "1.0.1",
"description": "Decode Polish Vehicle Registration Certificate Aztec 2D barcode data",
"type": "module",
"exports": {
".": {
"default": "./lib/polish-vehicle-registration-certificate-decoder.js",
"typings": "./lib/polish-vehicle-registration-certificate-decoder.d.ts"
}
},
"main": "lib/polish-vehicle-registration-certificate-decoder.js",
"typings": "lib/polish-vehicle-registration-certificate-decoder.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dex4er/js-polish-vehicle-registration-certificate-decoder"
},
"keywords": [
"2d",
"aztec",
"aztec2d",
"barcode",
"decode",
"decoder",
"vehicle"
],
"author": "Piotr Roszatycki",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dex4er/js-polish-vehicle-registration-certificate-decoder/issues"
},
"homepage": "http://github.com/dex4er/js-polish-vehicle-registration-certificate-decoder",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"nrv2e-decompress": "^1.0.2"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@tsconfig/node16": "^16.1.3",
"@types/chai": "^4.3.16",
"@types/core-js": "^2.5.8",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.7",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^7.13.1",
"c8": "^10.1.2",
"chai": "^5.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"markdownlint-cli": "^0.41.0",
"mocha": "^10.4.0",
"mocha-steps": "^1.3.0",
"prettier": "^3.3.2",
"semver": "^7.6.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1"
},
"scripts": {
"compile": "tsc --pretty --project .",
"clean": "npm run clean:compile && npm run clean:coverage",
"clean:compile": "shx rm -rf lib",
"clean:coverage": "shx rm -rf coverage .nyc_output",
"lint": "npm run lint:tsc:src && npm run lint:tsc:test && npm run lint:tsc:examples && npm run lint:eslint && npm run lint:prettier && npm run lint:markdownlint",
"lint:tsc:examples": "tsc --noEmit --pretty --project examples",
"lint:tsc:src": "tsc --noEmit --pretty --project .",
"lint:tsc:test": "tsc --noEmit --pretty --project test",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --ignore-path .gitignore --list-different '**/*.{js,json,md,ts,yml}'",
"lint:markdownlint": "markdownlint \"*.md\"",
"prepack": "npm run compile",
"prepublishOnly": "npm run test",
"pretest": "npm run lint",
"test": "npm run test:spec",
"test:spec": "mocha",
"test:coverage": "npm run test:coverage:spec && npm run test:coverage:report",
"test:coverage:spec": "c8 --no-clean --reporter=lcov npm run test:spec",
"test:coverage:report": "c8 report --reporter=text-summary --color"
}
}