This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "license-plate-serial-generator",
"description": "License plate serial generator",
"version": "1.1.0",
"repository": "github:patrik-csak/license-plate-serial-generator",
"author": "Patrik Csak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrik-csak/license-plate-serial-generator/issues"
},
"homepage": "https://github.com/patrik-csak/license-plate-serial-generator#readme",
"keywords": [
"license plate",
"serial",
"generator",
"random"
],
"main": "dist",
"files": [
"dist",
"!dist/*.js.map"
],
"scripts": {
"build": "tsc",
"docs": "typedoc",
"docs:develop": "npm-run-all --parallel docs:serve docs:watch",
"docs:serve": "nodemon --ext html --watch docs --exec 'npx serve docs'",
"docs:watch": "nodemon --ext ts --watch source --exec 'npm run docs'",
"format": "xo --fix",
"generate-serial": "scripts/generate-serial.js",
"prepare": "del-cli dist && npm run build && husky install",
"test": "xo && jest",
"test:coverage": "xo && jest --coverage"
},
"dependencies": {
"array-shuffle": "^2.0.0",
"bb26": "^2.2.0",
"get-range": "^2.0.1",
"random-int": "^2.0.1",
"random-item": "^3.1.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.2.4",
"del-cli": "^5.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"serve": "^14.1.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.21",
"typescript": "^4.5.4",
"xo": "^0.39.1"
},
"engines": {
"node": ">=14 <=19"
},
"types": "dist"
}