-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 959 Bytes
/
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
{
"name": "logpipes",
"description": "Console.log transformation pipes",
"version": "1.10.2",
"license": "Apache-2.0",
"main": "dist/index.js",
"private": false,
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"lint": "eslint . --ext .ts",
"test": "jest --runInBand",
"release": "npm run clean && npm run build && npm run lint && npm run test && rimraf ./dist/tests && npm publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/**/*"
],
"keywords": [
"logging",
"console",
"log",
"json",
"console.log",
"console.debug"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:mfursov/logpipes.git"
}
}