-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "outfront",
"version": "1.4.0",
"type": "module",
"description": "console logs, errors, debug, info and warning on the screen",
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"build": "babel src -d dist",
"publish-now": "npm run build && npm publish",
"start": "npm run build && sudo npm link"
},
"files": [
"package.json",
"index.js",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"logs",
"error",
"console.log",
"outfrontjs"
],
"licence": "MIT",
"author": "Gaurav Singh",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/paanSinghCoder/OutFrontJS.git"
},
"bugs": {
"url": "https://github.com/paanSinghCoder/OutFrontJS/issues"
},
"homepage": "https://github.com/paanSinghCoder/OutFrontJS#readme",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.18.2",
"prettier": "^2.3.1"
}
}