-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.6 KB
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
{
"name": "verba",
"version": "2.9.0",
"description": "Node logging library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"----------------------- TEST -----------------------": "",
"test:unit": "jest",
"test": "npm run test:unit",
"----------------------- LINT -----------------------": "",
"lint:errors": "eslint -c .eslintrc.json ./src --ext .ts --quiet",
"lint": "eslint -c .eslintrc.json ./src --ext .ts",
"----------------------- BUILD -----------------------": "",
"clean:build": "rimraf ./build/build",
"build": "npm run clean:build && tsc -p ./tsconfig.all.json",
"----------------------- BUILD DIST -----------------------": "",
"clean:build:dist": "rimraf ./lib",
"build:dist": "npm run clean:build:dist && tsc -p ./tsconfig.dist.json",
"----------------------- EXAMPLE -----------------------": "",
"clean:example": "rimraf ./build/examples",
"example:build": "tsc -p ./tsconfig.examples.json",
"example:run": "node ./build/examples/examples/app.js",
"example": "npm run clean:example && npm run example:build && npm run example:run",
"example:error:run": "node ./build/examples/examples/error-app.js",
"example:error": "npm run clean:example && npm run example:build && npm run example:error:run",
"----------------------- FULL CLEAN -----------------------": "",
"clean": "npm run clean:test:unit && npm run clean:build && npm run clean:build:dist && npm run clean:example",
"clean:slate": "npm run clean && rimraf ./node_modules",
"----------------------- FULL CHECK -----------------------": "",
"check": "npm rum lint:errors && npm run build && npm run test && npm run example && echo Done!",
"check-and-dist": "npm run check && npm run build:dist"
},
"repository": "https://github.com/samhuk/verba",
"author": {
"email": "[email protected]",
"name": "Sam Hughes",
"url": "https://linktr.ee/samhuk"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/columnify": "^1.5.1",
"kleur": "^4.1.5",
"columnify": "^1.6.0",
"ora-classic": "^5.4.2",
"safe-stable-stringify": "^2.4.3"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^24.3.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"ts-jest": "^29.2.5",
"cli-spinners": "^2.9.0",
"eslint": "^8.25.0",
"eslint-plugin-import": "^2.26.0",
"good-flow": "^0.0.20",
"jest": "^29.1.2",
"rimraf": "^3.0.2",
"typescript": "5.9.2"
}
}