-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "slf4ts-cassandra-log-adapter",
"description": "Cassandra logging-adapter for slf4ts-api",
"homepage": "https://github.com/rstiller/slf4ts",
"version": "1.2.0",
"main": "./build/packages/slf4ts-cassandra-log-adapter/lib/slf4ts/index.js",
"typings": "./build/packages/slf4ts-cassandra-log-adapter/lib/slf4ts/index.d.ts",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rstiller/slf4ts"
},
"keywords": [
"typescript",
"logging",
"cassandra"
],
"peerDependencies": {
"cassandra-driver": ">=3.5.0",
"slf4ts-api": ">=1.1.3"
},
"dependencies": {
"cassandra-driver": "^4.6.4",
"slf4ts-api": "workspace:^1.4.0",
"source-map-support": "^0.5.21"
},
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"files": [
"build"
],
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"clean": "rimraf build",
"compile": "tsc -p .",
"deps": "npm-check --ignore @types/* --no-spinner --no-emoji --no-color",
"lint": "eslint ./lib/**/*.ts ./test/**/*.ts",
"prepublishOnly": "npm run build",
"test": "mocha test/**/*Test.ts"
},
"mocha": {
"require": [
"source-map-support/register",
"ts-node/register"
],
"reporter": "dot",
"extension": "ts",
"bail": true,
"full-trace": true
}
}