koatty_store 1.5.8 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/package.json CHANGED
@@ -1,93 +1,95 @@
1
- {
2
- "name": "koatty_store",
3
- "version": "1.5.8",
4
- "description": "Cache store for koatty.",
5
- "scripts": {
6
- "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
7
- "build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
8
- "build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
9
- "build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
10
- "build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
11
- "eslint": "eslint --ext .ts,.js ./",
12
- "prepublishOnly": "npm test && npm run build",
13
- "prerelease": "npm test && npm run build",
14
- "pub": "git push --follow-tags origin && npm publish",
15
- "release": "standard-version",
16
- "test": "npm run eslint && jest --passWithNoTests"
17
- },
18
- "main": "./dist/index.js",
19
- "exports": {
20
- "require": "./dist/index.js",
21
- "import": "./dist/index.mjs"
22
- },
23
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/koatty/koatty_store.git"
26
- },
27
- "keywords": [
28
- "web",
29
- "typescript",
30
- "framework",
31
- "mvc",
32
- "koa2",
33
- "restful",
34
- "agile",
35
- "koatty_store",
36
- "koatty"
37
- ],
38
- "engines": {
39
- "node": ">10.0.0"
40
- },
41
- "author": {
42
- "name": "richenlin",
43
- "email": "richenlin@gmail.com"
44
- },
45
- "license": "BSD-3-Clause",
46
- "bugs": {
47
- "url": "https://github.com/koatty/koatty_store/issues"
48
- },
49
- "homepage": "https://github.com/koatty/koatty_store",
50
- "maintainers": [
51
- {
52
- "name": "richenlin",
53
- "email": "richenlin@gmail.com"
54
- }
55
- ],
56
- "devDependencies": {
57
- "@commitlint/cli": "^17.x.x",
58
- "@commitlint/config-conventional": "^17.x.x",
59
- "@microsoft/api-documenter": "^7.x.x",
60
- "@microsoft/api-extractor": "^7.x.x",
61
- "@rollup/plugin-json": "^6.x.x",
62
- "@types/ioredis": "^4.x.x",
63
- "@types/jest": "^29.x.x",
64
- "@types/koa": "^2.x.x",
65
- "@types/node": "^18.x.x",
66
- "@typescript-eslint/eslint-plugin": "^5.x.x",
67
- "@typescript-eslint/parser": "^5.x.x",
68
- "conventional-changelog-cli": "^2.x.x",
69
- "copyfiles": "^2.x.x",
70
- "del-cli": "^4.x.x",
71
- "eslint": "^8.x.x",
72
- "eslint-plugin-jest": "^27.x.x",
73
- "husky": "^4.x.x",
74
- "jest": "^29.x.x",
75
- "jest-html-reporters": "^3.x.x",
76
- "rollup": "^3.x.x",
77
- "rollup-plugin-typescript2": "^0.x.x",
78
- "standard-version": "^9.x.x",
79
- "ts-jest": "^29.x.x",
80
- "ts-node": "^10.x.x",
81
- "typescript": "^4.x.x"
82
- },
83
- "dependencies": {
84
- "generic-pool": "^3.9.0",
85
- "ioredis": "^4.28.5",
86
- "koatty_lib": "^1.x.x",
87
- "koatty_logger": "^2.x.x"
88
- },
89
- "peerDependencies": {
90
- "koatty_lib": "^1.x.x",
91
- "koatty_logger": "^2.x.x"
92
- }
93
- }
1
+ {
2
+ "name": "koatty_store",
3
+ "version": "1.6.1",
4
+ "description": "Cache store for koatty.",
5
+ "scripts": {
6
+ "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
7
+ "build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
8
+ "build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
9
+ "build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
10
+ "build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
11
+ "eslint": "eslint --ext .ts,.js ./",
12
+ "prepublishOnly": "npm test && npm run build",
13
+ "prerelease": "npm test && npm run build",
14
+ "pub": "git push --follow-tags origin && npm publish",
15
+ "release": "standard-version",
16
+ "release:pre": "npm run release -- --prerelease",
17
+ "release:major": "npm run release -- --release-as major",
18
+ "release:minor": "npm run release -- --release-as minor",
19
+ "test": "npm run eslint && jest --passWithNoTests"
20
+ },
21
+ "main": "./dist/index.js",
22
+ "exports": {
23
+ "require": "./dist/index.js",
24
+ "import": "./dist/index.mjs"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/koatty/koatty_store.git"
29
+ },
30
+ "keywords": [
31
+ "web",
32
+ "typescript",
33
+ "framework",
34
+ "mvc",
35
+ "koa2",
36
+ "restful",
37
+ "agile",
38
+ "koatty_store",
39
+ "koatty"
40
+ ],
41
+ "engines": {
42
+ "node": ">10.0.0"
43
+ },
44
+ "author": {
45
+ "name": "richenlin",
46
+ "email": "richenlin@gmail.com"
47
+ },
48
+ "license": "BSD-3-Clause",
49
+ "bugs": {
50
+ "url": "https://github.com/koatty/koatty_store/issues"
51
+ },
52
+ "homepage": "https://github.com/koatty/koatty_store",
53
+ "maintainers": [
54
+ {
55
+ "name": "richenlin",
56
+ "email": "richenlin@gmail.com"
57
+ }
58
+ ],
59
+ "devDependencies": {
60
+ "@commitlint/cli": "^17.x.x",
61
+ "@commitlint/config-conventional": "^17.x.x",
62
+ "@microsoft/api-documenter": "^7.x.x",
63
+ "@microsoft/api-extractor": "^7.x.x",
64
+ "@rollup/plugin-json": "^6.x.x",
65
+ "@types/jest": "^29.x.x",
66
+ "@types/koa": "^2.x.x",
67
+ "@types/node": "^18.x.x",
68
+ "@typescript-eslint/eslint-plugin": "^5.x.x",
69
+ "@typescript-eslint/parser": "^5.x.x",
70
+ "conventional-changelog-cli": "^2.x.x",
71
+ "copyfiles": "^2.x.x",
72
+ "del-cli": "^4.x.x",
73
+ "eslint": "^8.x.x",
74
+ "eslint-plugin-jest": "^27.x.x",
75
+ "husky": "^4.x.x",
76
+ "jest": "^29.x.x",
77
+ "jest-html-reporters": "^3.x.x",
78
+ "rollup": "^3.x.x",
79
+ "rollup-plugin-typescript2": "^0.x.x",
80
+ "standard-version": "^9.x.x",
81
+ "ts-jest": "^29.x.x",
82
+ "ts-node": "^10.x.x",
83
+ "typescript": "^4.x.x"
84
+ },
85
+ "dependencies": {
86
+ "generic-pool": "^3.9.0",
87
+ "ioredis": "^5.3.2",
88
+ "koatty_lib": "^1.x.x",
89
+ "koatty_logger": "^2.x.x"
90
+ },
91
+ "peerDependencies": {
92
+ "koatty_lib": "^1.x.x",
93
+ "koatty_logger": "^2.x.x"
94
+ }
95
+ }
package/package.json CHANGED
@@ -1,93 +1,95 @@
1
- {
2
- "name": "koatty_store",
3
- "version": "1.5.8",
4
- "description": "Cache store for koatty.",
5
- "scripts": {
6
- "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
7
- "build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
8
- "build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
9
- "build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
10
- "build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
11
- "eslint": "eslint --ext .ts,.js ./",
12
- "prepublishOnly": "npm test && npm run build",
13
- "prerelease": "npm test && npm run build",
14
- "pub": "git push --follow-tags origin && npm publish",
15
- "release": "standard-version",
16
- "test": "npm run eslint && jest --passWithNoTests"
17
- },
18
- "main": "./dist/index.js",
19
- "exports": {
20
- "require": "./dist/index.js",
21
- "import": "./dist/index.mjs"
22
- },
23
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/koatty/koatty_store.git"
26
- },
27
- "keywords": [
28
- "web",
29
- "typescript",
30
- "framework",
31
- "mvc",
32
- "koa2",
33
- "restful",
34
- "agile",
35
- "koatty_store",
36
- "koatty"
37
- ],
38
- "engines": {
39
- "node": ">10.0.0"
40
- },
41
- "author": {
42
- "name": "richenlin",
43
- "email": "richenlin@gmail.com"
44
- },
45
- "license": "BSD-3-Clause",
46
- "bugs": {
47
- "url": "https://github.com/koatty/koatty_store/issues"
48
- },
49
- "homepage": "https://github.com/koatty/koatty_store",
50
- "maintainers": [
51
- {
52
- "name": "richenlin",
53
- "email": "richenlin@gmail.com"
54
- }
55
- ],
56
- "devDependencies": {
57
- "@commitlint/cli": "^17.x.x",
58
- "@commitlint/config-conventional": "^17.x.x",
59
- "@microsoft/api-documenter": "^7.x.x",
60
- "@microsoft/api-extractor": "^7.x.x",
61
- "@rollup/plugin-json": "^6.x.x",
62
- "@types/ioredis": "^4.x.x",
63
- "@types/jest": "^29.x.x",
64
- "@types/koa": "^2.x.x",
65
- "@types/node": "^18.x.x",
66
- "@typescript-eslint/eslint-plugin": "^5.x.x",
67
- "@typescript-eslint/parser": "^5.x.x",
68
- "conventional-changelog-cli": "^2.x.x",
69
- "copyfiles": "^2.x.x",
70
- "del-cli": "^4.x.x",
71
- "eslint": "^8.x.x",
72
- "eslint-plugin-jest": "^27.x.x",
73
- "husky": "^4.x.x",
74
- "jest": "^29.x.x",
75
- "jest-html-reporters": "^3.x.x",
76
- "rollup": "^3.x.x",
77
- "rollup-plugin-typescript2": "^0.x.x",
78
- "standard-version": "^9.x.x",
79
- "ts-jest": "^29.x.x",
80
- "ts-node": "^10.x.x",
81
- "typescript": "^4.x.x"
82
- },
83
- "dependencies": {
84
- "generic-pool": "^3.9.0",
85
- "ioredis": "^4.28.5",
86
- "koatty_lib": "^1.x.x",
87
- "koatty_logger": "^2.x.x"
88
- },
89
- "peerDependencies": {
90
- "koatty_lib": "^1.x.x",
91
- "koatty_logger": "^2.x.x"
92
- }
93
- }
1
+ {
2
+ "name": "koatty_store",
3
+ "version": "1.6.1",
4
+ "description": "Cache store for koatty.",
5
+ "scripts": {
6
+ "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
7
+ "build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
8
+ "build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
9
+ "build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
10
+ "build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
11
+ "eslint": "eslint --ext .ts,.js ./",
12
+ "prepublishOnly": "npm test && npm run build",
13
+ "prerelease": "npm test && npm run build",
14
+ "pub": "git push --follow-tags origin && npm publish",
15
+ "release": "standard-version",
16
+ "release:pre": "npm run release -- --prerelease",
17
+ "release:major": "npm run release -- --release-as major",
18
+ "release:minor": "npm run release -- --release-as minor",
19
+ "test": "npm run eslint && jest --passWithNoTests"
20
+ },
21
+ "main": "./dist/index.js",
22
+ "exports": {
23
+ "require": "./dist/index.js",
24
+ "import": "./dist/index.mjs"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/koatty/koatty_store.git"
29
+ },
30
+ "keywords": [
31
+ "web",
32
+ "typescript",
33
+ "framework",
34
+ "mvc",
35
+ "koa2",
36
+ "restful",
37
+ "agile",
38
+ "koatty_store",
39
+ "koatty"
40
+ ],
41
+ "engines": {
42
+ "node": ">10.0.0"
43
+ },
44
+ "author": {
45
+ "name": "richenlin",
46
+ "email": "richenlin@gmail.com"
47
+ },
48
+ "license": "BSD-3-Clause",
49
+ "bugs": {
50
+ "url": "https://github.com/koatty/koatty_store/issues"
51
+ },
52
+ "homepage": "https://github.com/koatty/koatty_store",
53
+ "maintainers": [
54
+ {
55
+ "name": "richenlin",
56
+ "email": "richenlin@gmail.com"
57
+ }
58
+ ],
59
+ "devDependencies": {
60
+ "@commitlint/cli": "^17.x.x",
61
+ "@commitlint/config-conventional": "^17.x.x",
62
+ "@microsoft/api-documenter": "^7.x.x",
63
+ "@microsoft/api-extractor": "^7.x.x",
64
+ "@rollup/plugin-json": "^6.x.x",
65
+ "@types/jest": "^29.x.x",
66
+ "@types/koa": "^2.x.x",
67
+ "@types/node": "^18.x.x",
68
+ "@typescript-eslint/eslint-plugin": "^5.x.x",
69
+ "@typescript-eslint/parser": "^5.x.x",
70
+ "conventional-changelog-cli": "^2.x.x",
71
+ "copyfiles": "^2.x.x",
72
+ "del-cli": "^4.x.x",
73
+ "eslint": "^8.x.x",
74
+ "eslint-plugin-jest": "^27.x.x",
75
+ "husky": "^4.x.x",
76
+ "jest": "^29.x.x",
77
+ "jest-html-reporters": "^3.x.x",
78
+ "rollup": "^3.x.x",
79
+ "rollup-plugin-typescript2": "^0.x.x",
80
+ "standard-version": "^9.x.x",
81
+ "ts-jest": "^29.x.x",
82
+ "ts-node": "^10.x.x",
83
+ "typescript": "^4.x.x"
84
+ },
85
+ "dependencies": {
86
+ "generic-pool": "^3.9.0",
87
+ "ioredis": "^5.3.2",
88
+ "koatty_lib": "^1.x.x",
89
+ "koatty_logger": "^2.x.x"
90
+ },
91
+ "peerDependencies": {
92
+ "koatty_lib": "^1.x.x",
93
+ "koatty_logger": "^2.x.x"
94
+ }
95
+ }
@@ -1,25 +0,0 @@
1
- {
2
- // 使用 IntelliSense 了解相关属性。
3
- // 悬停以查看现有属性的描述。
4
- // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5
- "version": "0.2.0",
6
- "configurations": [
7
- {
8
- "name": "Launch Typescript Project",
9
- "type": "node",
10
- "request": "launch",
11
- "args": [
12
- "${workspaceRoot}/test/test.ts"
13
- ],
14
- "runtimeArgs": [
15
- "--nolazy",
16
- "-r",
17
- "ts-node/register"
18
- ],
19
- "sourceMaps": true,
20
- "cwd": "${workspaceRoot}",
21
- "protocol": "inspector",
22
- "internalConsoleOptions": "neverOpen"
23
- }
24
- ]
25
- }