-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.61 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
48
49
50
51
{
"name": "@dorianb/logger-js",
"version": "0.7.6",
"description": "A simple logger library for JS and NodeJS",
"main": "dist/main.min.js",
"scripts": {
"test": "jest --runInBand",
"dev": "nodemon lib/main.js",
"perf": "jest -t 'Performance test'",
"build": "npx terser --compress --mangle -- lib/main.js > dist/main.min.js",
"docs": "node_modules/.bin/jsdoc2md --no-cache --heading-depth=3 --partial docs/*.hbs -t docs/README.hbs lib/*.js > README.md ",
"publish-to-npm": "npm run docs && npx auto-version && git commit . -m \"publish $PACKAGE_VERSION to npm\" && git tag $PACKAGE_VERSION && git push && npm publish"
},
"jest": {
"verbose": true,
"testRegex": "./test/.*.js$",
"rootDir": ".",
"testPathIgnorePatterns": [
"/node_modules/",
"test/test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/d0rianb/logger-lib.git"
},
"keywords": [
"logger",
"log",
"simple",
"logging"
],
"author": "D0rian <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d0rianb/logger-lib/issues"
},
"homepage": "https://github.com/d0rianb/logger-lib#readme",
"devDependencies": {
"auto-version-js": "^0.3.0",
"jest": "^26.0.1",
"jsdoc-to-markdown": "^6.0.1",
"nodemon": "^2.0.4",
"terser": "^5.7.0"
},
"dependencies": {
"moment-timezone": "^0.5.31",
"pkg-dir": "^4.2.0",
"speed-date": "^1.0.0"
}
}