-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
89 lines (89 loc) · 2.72 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"author": {
"name": "Frederic G. MARAND",
"email": "[email protected]",
"url": "http://blog.riff.org"
},
"browser": "./lib/indexBrowser.js",
"contributors": [
{
"name": "Ilari Patrikka",
"email": "[email protected]"
},
{
"name": "Lamine Hamrit",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/FGM/filog/issues",
"email": "[email protected]"
},
"dependencies": {
"callsite": "^1.0.0",
"modern-syslog": "^1.1.4",
"tracekit": "~0.4.4"
},
"description": "A logger client for errors/exceptions in Meteor JS projects",
"devDependencies": {
"@types/callsite": "^1.0.30",
"@types/jest": "^26",
"@types/meteor": "^1.4.26",
"@types/node": "^12",
"@types/sinon": "^9",
"axios": "^0.21.1",
"codecov": "^3.2.0",
"growl": "^1.10.5",
"jest": "^26.6",
"jsdoc": "^3.6.6",
"npm": "^6.9",
"sinon": "^9.2",
"ts-jest": "^26.4",
"tslint": "^6",
"typedoc": "^0.20",
"typescript": "^4.1.3",
"yarn": "^1.16.0"
},
"engineStrict": true,
"engines": {
"node": "12.*",
"npm": ">=2.0"
},
"engines#1": "We specify npm >= 2 to get proper local dependency support in",
"engines#2": "application itself ; this is not a package dependency per se.",
"engines#3": "We specify node 12.* to avoid modern_syslog NODE_MODULE_VERSION issues.",
"homepage": "https://github.com/FGM/filog",
"keywords": [
"log",
"logging",
"meteor",
"mongo",
"sysadmin",
"syslog",
"tools"
],
"license": "GPL-3.0+",
"main": "lib/index.js",
"name": "filog",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/FGM/filog.git"
},
"scripts": {
"clean": "rm -fr coverage node_modules",
"ts-compile": "rm -fr lib src/*.js src/*/*.js; tsc -p tsconfig.json",
"ts-compile-tests": "rm -fr lib src/*.js src/*/*.js; tsc -p tsconfig_test.json",
"ts-lint": "tslint -p tsconfig.json",
"compile": "rm -fr lib/* ; rm -fr node_modules ; meteor npm i && meteor npm run test-compile",
"doc": "rm -fr out ; typedoc",
"test-ci": "time -p jest --coverage __tests__/**/test.ts",
"test-compile": "time -p tsc",
"test-integration": "meteor npm run test-compile && time -p jest __tests__/integration/test.ts",
"test-unit": "meteor npm run test-compile && time -p jest __tests__/unit/test.ts",
"test": "meteor npm run test-compile && time -p jest __tests__/**/test.*",
"cover": "meteor npm run test-compile && time -p jest --coverage __tests__/**/test.*"
},
"typings": "lib/index.d.ts",
"version": "0.2.2"
}