-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@alt-javascript/logger",
"version": "2.0.5",
"description": "A simple configurable logging facade for javascript.",
"author": "",
"keywords": [
"log",
"logger",
"loglevel",
"loggerlevel",
"LogFactory",
"facade",
"config",
"configurable",
"slf4j"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/alt-javascript/logger#readme",
"repository": {
"type": "git",
"url": "https://github.com/alt-javascript/logger"
},
"main": "index.js",
"type": "module",
"scripts": {
"lint": "npx eslint \"./*.js\" \"./test/**/*.js\" --fix",
"test": "npm run test:unit",
"test:unit": "npm run test:tdd",
"test:tdd": "mocha --require test/fixtures/index.js",
"coverage": "npm run c8",
"mocha": "mocha --require test/fixtures/index.js",
"c8": "c8 --reporter=json-summary --reporter=text-summary --reporter=lcov npm run test",
"bundle": "npm run webify && rollup -c && npm run unwebify",
"minify-iife": "terser dist/alt-javascript-loggerfactory-iife.js -c ",
"minify-esm": "terser dist/alt-javascript-logger-esm.js -c ",
"build-iife": "npm run minify-iife -- -o dist/alt-javascript-loggerfactory-iife-min.js --source-map",
"build-esm": "npm run minify-esm -- -o dist/alt-javascript-logger-esm-min.js --source-map",
"build": "npm run bundle && npm run build-iife && npm run build-esm",
"webify": "shx sed -i 's/[*][*]/\\/\\/**/g' index.js",
"unwebify": "shx sed -i 's/\\/\\/[*][*]/**/g' index.js"
},
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"@alt-javascript/config": "^1.0.2",
"babel-eslint": "^10.1.0",
"c8": "^7.11.0",
"chai": "^4.3.4",
"config": "^3.3.6",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.2",
"npx": "^10.2.2",
"rollup": "^2.69.2",
"run-script-os": "^1.1.6",
"shx": "^0.3.4",
"terser": "^5.12.0",
"winston": "^3.3.3"
}
}