-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "cache-bridge",
"version": "0.1.0",
"description": "",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"./**/*.js",
"./**/*.ts"
],
"scripts": {
"build:rm": "rm -rf ./dist",
"build:tsc": "tsc --project tsconfig.build.json",
"build:copy": "mkdir -p dist && cp package.json package-lock.json README.md LICENSE dist/",
"build": "npm run build:rm && npm run build:tsc && npm run build:copy",
"publish:beta": "cd dist && npm publish --tag beta",
"publish:main": "cd dist && npm publish",
"test:ts": "mocha --require ts-node/register test/test/**/*.test.ts",
"test": "npm run test:ts",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint --max-warnings 0 .",
"lint": "npm run lint:ts && npm run lint:eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/SoftwareSing/cache-bridge.git"
},
"keywords": [
"cache"
],
"author": "SoftwareSing",
"license": "MIT",
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@tsconfig/node14": "^1.0.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.5",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"chai": "^4.3.7",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"ioredis": "^5.3.2",
"lru-cache": "^9.1.1",
"mocha": "^10.2.0",
"redis": "^4.6.6",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}