-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.73 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
{
"name": "simple-logging-system",
"version": "1.1.0",
"description": "A simple JS Logging system written in TypeScript",
"author": "Aurélien Manteaux <amanteaux@coreoz.com> (https://coreoz.com)",
"repository": "https://github.com/coreoz/simple-logging-system",
"homepage": "https://github.com/coreoz/simple-logging-system",
"license": "Apache-2.0",
"keywords": [
"logger",
"logging",
"logback",
"slf4j"
],
"scripts": {
"build": "npm run tsc:cjs && npm run tsc:esm",
"tsc:cjs": "tsc --module commonjs --outDir build/cjs -p tsconfig.json",
"tsc:esm": "tsc --module esnext --outDir build/esm -p tsconfig.json",
"clean": "rm -rf build",
"lint": "tsc --noEmit --outDir build/esm -p tsconfig.json && eslint src --ext .ts",
"prepare-release": "npm run clean && npm run lint && npm run test && npm run build",
"release": "release-it",
"test": "mocha -r ts-node/register 'tests/**/*.ts'"
},
"release-it": {
"hooks": {
"before:init": [
"npm run prepare-release"
]
}
},
"main": "build/cjs/index.js",
"typings": "build/esm/index.d.ts",
"module": "build/esm/index.js",
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"chai": "^4.3.4",
"eslint": "^7.8.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"mocha": "^9.0.2",
"release-it": "^14.10.0",
"ts-node": "^10.1.0",
"typedoc": "^0.21.4",
"typescript": "^4.0.2"
},
"files": [
"build/**/*.*"
]
}