-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.2 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "unit-redis-ness",
"version": "1.0.13",
"description": "A typescript implementation of redis to facilitate unit testing",
"main": "dist/server/resp-server.js",
"messages": [
"adapted from https://github.com/tonivade/claudb.git"
],
"bugs": {
"url": "https://github.com/dooleydiligent/unit-redis-ness/issues"
},
"files": [
"dist",
"images",
"test-unit-redis-ness"
],
"homepage": "https://dooleydiligent.github.io/unit-redis-ness/",
"scripts": {
"build": "npm run clean && npm run lint && npm run doc && npm run makeindex && node_modules/.bin/changelog all -m >CHANGELOG.raw && npm test && tsc -p .",
"clean": "rm -rf ${npm_package_name}-${npm_package_version}.tgz dist doc coverage .nyc_output test-unit-redis-ness/node_modules docs/*/*",
"doc": "typedoc --out docs/doc --theme default --tsconfig ./tsconfig.json --hideGenerator --plugin typedoc-plugin-missing-exports && cp -R images ./docs/doc/images",
"makeindex": "cp index.html images/dooley.gif docs/",
"lint": "eslint . --fix",
"start": "node -e 'const s = require(\"./dist/server/resp-server\");const c=new s.RespServer();c.start();'",
"test": "nyc --reporter=cobertura --reporter=html mocha --reporter=mochawesome --reporter-options reportDir=docs/mochawesome --recursive --exit test/**/**/*.test.ts test/**/*.test.ts test/*.test.ts",
"prepack": "npm run clean && npm run build && npm run doc && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/dooleydiligent/unit-redis-ness"
},
"keywords": [
"redis",
"lua",
"typescript"
],
"author": "lane holcombe",
"license": "MIT",
"dependencies": {
"fengari": "^0.1.4",
"redis-parser": "^3.0.0",
"redis-sorted-set": "^2.0.0",
"resp": "^0.1.1"
},
"engines": {
"node": ">=16.20.2",
"npm": ">=8.19.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/assert": "^1.5.10",
"@types/chai": "^4.3.11",
"@types/deep-equal": "^1.0.4",
"@types/mocha": "^5.2.7",
"@types/node": "^13.13.52",
"@types/redis-parser": "^3.0.3",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"assert": "^2.1.0",
"chai": "^4.3.10",
"changelog": "^1.0.4",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"net": "^1.0.2",
"nyc": "^15.1.0",
"sinon": "^8.1.1",
"source-map-support": "^0.5.21",
"ts-node": "^8.10.2",
"typedoc": "^0.25.4",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^5.3.3"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**/*.ts",
"test/**/*.ts"
],
"check-coverage": true,
"branches": 43,
"lines": 62,
"functions": 64,
"statements": 62,
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html",
"spec",
"cobertura",
"mochawesome"
],
"sourceMap": true,
"instrument": true,
"report-dir": "docs/coverage"
}
}