-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 KB
/
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
43
44
45
46
47
{
"name": "@topmarksdevelopment/javascript-logger",
"description": "A compact tool to help log messages/errors in your javascript code",
"author": "TopMarksDevelopment",
"version": "1.1.0",
"preview": true,
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"JavaScript Logger",
"JS Logger",
"vanilla js logger",
"JavaScript Logging",
"JS Logging",
"vanilla js logging"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TopMarksDevelopment/JavaScript.Logger.git"
},
"bugs": {
"url": "https://github.com/TopMarksDevelopment/JavaScript.Logger/issues"
},
"homepage": "https://github.com/TopMarksDevelopment/JavaScript.Logger#readme",
"files": [
"lib/**",
"package-lock.json",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint ./src --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
},
"dependencies": {}
}