-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@simplyappdevs/logging-helper",
"version": "1.1.0",
"description": "Logging helper for Javascript/Typescript",
"type": "module",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./app-cidr": {
"import": "./dist/esm/app-cidr.js",
"require": "./dist/cjs/app-cidr.js"
}
},
"files": [
"dist",
"src",
"examples",
"README.md"
],
"dependencies": {
"browser-or-node": "^1.3.0"
},
"devDependencies": {
"@atao60/fse-cli": "^0.1.7",
"@types/browser-or-node": "^1.3.0",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.14",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.4.2"
},
"scripts": {
"tsc": "tsc",
"del": "rimraf",
"test": "jest",
"cp": "fse copy",
"cpesmpkg": "npm run cp ./package-esm.json ./dist/esm/package.json",
"cpcjspkg": "npm run cp ./package-cjs.json ./dist/cjs/package.json",
"build:common": "tsc --project tsconfig-cjs.json",
"build:esm": "tsc --project tsconfig.json",
"clean": "npm run del ./dist/*",
"build": "npm run clean && npm run build:common && npm run build:esm && npm run cpesmpkg && npm run cpcjspkg",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyappdevs/logging-helper.git"
},
"keywords": [
"logging",
"typescript",
"javascript"
],
"author": "SimplyAppDevs",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/simplyappdevs/logging-helper/issues"
},
"homepage": "https://github.com/simplyappdevs/logging-helper#readme"
}