node-kv-storage
Advanced tools
Comparing version 3.0.0 to 3.0.1
{ | ||
"name": "node-kv-storage", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Wrapper around node-persist that conforms to the std:kv-storage interface", | ||
"type": "module", | ||
"main": "cjs/index.js", | ||
"main": "cjs/index.cjs", | ||
"module": "index.js", | ||
@@ -17,7 +17,7 @@ "files": [ | ||
"import": "./index.js", | ||
"require": "./cjs/index.js" | ||
"require": "./cjs/index.cjs" | ||
} | ||
}, | ||
"scripts": { | ||
"clean": "rm -rf *.d.ts *.js *.js.map *.d.ts.map cjs", | ||
"clean": "shx rm -rf *.d.ts *.js *.js.map *.d.ts.map cjs", | ||
"test": "npm run build:mjs && node test/index.js", | ||
@@ -27,3 +27,5 @@ "prepublishOnly": "npm run build", | ||
"build:mjs": "tsc -d -p tsconfig.json", | ||
"build:cjs": "tsc -d -p tsconfig.cjs.json" | ||
"build:cjs": "tsc -d -p tsconfig.cjs.json && npm run sed && npm run mv", | ||
"sed": "shx sed -i 's/\\.(.*)\\.js/\\.$1\\.cjs/g' cjs/*.js > /dev/null ", | ||
"mv": "for f in cjs/*.js; do shx mv \"$f\" \"${f%.js}.cjs\"; done" | ||
}, | ||
@@ -42,2 +44,3 @@ "author": "Florian Klampfer <mail@qwtel.com> (https://qwtel.com/)", | ||
"@types/assert": "^1.5.4", | ||
"shx": "^0.3.3", | ||
"typescript": "^4.2.2" | ||
@@ -44,0 +47,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
55783
0
3