-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.68 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
{
"name": "@cantinc/logger",
"version": "1.2.0",
"description": "CANT inc. log system",
"homepage": "https://github.com/cantinc/logger",
"author": "Mikhail Lysikov <d8corp@mail.ru>",
"license": "MIT",
"private": true,
"main": "index.js",
"module": "index.mjs",
"jsnext:main": "index.mjs",
"types": "index.d.ts",
"scripts": {
"build": "innetjs release",
"release": "innetjs release -p",
"test": "npm run lint && npm run tests",
"tests": "jest",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "npm run build && cd lib && sudo npm link",
"patch": "bin/release -patch -rollup -publish",
"minor": "bin/release -minor -rollup -publish",
"major": "bin/release -major -rollup -publish"
},
"repository": {
"type": "git",
"url": "https://github.com/cantinc/logger.git"
},
"keywords": [
"log",
"logger",
"logging",
"cantinc",
"node",
"back-end",
"front-end"
],
"bugs": {
"url": "https://github.com/cantinc/logger/issues"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^26.0.24",
"@types/node": "^14.14.13",
"@types/rollup": "^0.54.0",
"@typescript-eslint/parser": "^8.55.0",
"core-js": "^3.16.1",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.14.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"glob": "^7.1.7",
"innetjs": "^3.2.6",
"jest": "^26.6.3",
"lodash": ">=4.17.19",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.1.2",
"typescript-eslint": "^8.46.4"
}
}