-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "@arpinum/log",
"version": "6.1.2",
"description": "Simple module to log on stdout or stderr",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"lint": "eslint .",
"jest": "jest --verbose",
"testw": "jest --watch",
"prettier": "prettier --write '**/*.{js,json,md,ts}'",
"compile": "tsc",
"test": "run-s -c compile jest lint",
"prebuild": "rm -rf ./build",
"build": "tsc -p ./tsconfig.prod.json",
"preversion": "run-s test build",
"postversion": "git push && git push --tags && npm publish"
},
"author": "Arpinum",
"license": "MIT",
"repository": "arpinum-oss/js-log.git",
"keywords": [
"log",
"logger",
"console",
"12 factor",
"Arpinum"
],
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jest": "^29.5.14",
"eslint": "^9.15.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"npm-run-all": "4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"jest": {
"preset": "ts-jest"
},
"volta": {
"node": "20.12.0",
"npm": "10.2.4"
}
}