-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "i45-jslogger",
"version": "2.0.1",
"description": "A simple JavaScript logger for capturing events in the console and local storage.",
"main": "./dist/logger.js",
"module": "./dist/logger.js",
"type": "module",
"types": "./dist/logger.d.ts",
"exports": {
".": {
"import": "./dist/logger.js",
"types": "./dist/logger.d.ts"
}
},
"scripts": {
"test": "node tests/test-logger.js && node tests/test-default-export.js && node tests/test-storage.js && node tests/test-clients.js && node tests/test-maxevents.js",
"checkin": "git add . && git commit -m 'See CHANGES.md for a list of changes.'",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"lint": "eslint ."
},
"files": [
"/dist",
"README.md",
"CHANGES.md"
],
"keywords": [
"logging",
"javascript",
"logger"
],
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"rollup": "^4.30.1",
"@rollup/plugin-node-resolve": "^15.3.1",
"rollup-plugin-dts": "^6.1.1",
"rimraf": "^6.0.1"
},
"author": "CIS Guru <cisguru@outlook.com>",
"license": "ISC",
"homepage": "https://github.com/xnodeoncode/i45-jslogger",
"repository": {
"type": "git",
"url": "git+https://github.com/xnodeoncode/i45-jslogger.git"
},
"bugs": {
"url": "https://github.com/xnodeoncode/i45-jslogger/issues"
}
}