-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 895 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 895 Bytes
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
{
"name": "@slavshik/log",
"version": "0.0.21",
"description": "Tiny log with styling for the browser console.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/dts/index.d.ts",
"files": [
"dist/*"
],
"repository": "git@github.com:slavshik/log.git",
"author": "Alexander Slavschik",
"license": "MIT",
"scripts": {
"release": "standard-version",
"test": "echo \"No tests specified\" && exit 0",
"build": "rimraf dist && rollup --config rollup.config.ts --configPlugin typescript"
},
"standard-version": {
"releaseCommitMessageFormat": "chore(release): {{currentTag}} [ci skip]"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"rimraf": "^3.0.2",
"rollup": "^2.56.1",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.3.2",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}