git-cmd-repo-info
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "git-cmd-repo-info", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Retrieves repo information WITH relying on the git command.", | ||
"main": "cjs/index.js", | ||
"module": "esm/index.js", | ||
"main": "cjs/index.cjs", | ||
"module": "esm/index.mjs", | ||
"types": "index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./index.d.ts", | ||
"import": "./esm/index.mjs", | ||
"require": "./cjs/index.cjs" | ||
} | ||
}, | ||
"repository": "git@github.com:CarterLi/git-repo-info.git", | ||
@@ -18,6 +25,6 @@ "author": "李通洲 <carter.li@eoitek.com>", | ||
"clean": "rm -rf esm cjs index.d.ts", | ||
"build-esm": "tsc -p .", | ||
"build-cjs": "tsc -p . -m commonjs --outDir cjs", | ||
"test": "node test" | ||
"build-esm": "tsc -p . && mv ./esm/index.js ./esm/index.mjs", | ||
"build-cjs": "tsc -p . -m commonjs --outDir cjs && mv ./cjs/index.js ./cjs/index.cjs", | ||
"test": "node test/index.cjs && node test/index.mjs" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
11855