-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "@pelv/frontlog",
"version": "2.0.1",
"description": "Simple yet complex styled console.log library. Just vanilla JS, no dependencies.",
"author": "Pelv",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint ./src",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run lint && babel ./src -d ./lib",
"build:publish": "npm run lint && npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run build:publish",
"release": "np"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.25.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"np": "^7.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pelv/frontlog.git"
},
"keywords": [
"javascript",
"console",
"log",
"logging",
"javascript-library"
],
"bugs": {
"url": "https://github.com/Pelv/frontlog/issues"
},
"homepage": "https://github.com/Pelv/frontlog#readme"
}