-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "@cantinc/logger",
"version": "1.1.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.es6.js",
"jsnext:main": "index.es6.js",
"types": "index.d.ts",
"scripts": {
"install": "husky install",
"build": "bin/release -rollup",
"test": "npm run lint && npm run tests",
"tests": "jest",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --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": {
"@types/jest": "^26.0.24",
"@types/node": "^14.14.13",
"@types/rollup": "^0.54.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"core-js": "^3.16.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"glob": "^7.1.7",
"husky": "^7.0.1",
"jest": "^26.6.3",
"lodash": ">=4.17.19",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.6",
"typescript": "^4.1.2"
}
}