feat: 支持前后一体登录模板

This commit is contained in:
qiang
2021-01-16 16:36:23 +08:00
parent e8c552a394
commit 14a86cb305
107 changed files with 5637 additions and 1319 deletions
+18 -13
View File
@@ -1,8 +1,9 @@
{
"name": "commander",
"version": "2.8.1",
"version": "2.20.3",
"description": "the complete solution for node.js command-line programs",
"keywords": [
"commander",
"command",
"option",
"parser"
@@ -13,21 +14,25 @@
"type": "git",
"url": "https://github.com/tj/commander.js.git"
},
"devDependencies": {
"should": ">= 0.0.1",
"sinon": ">= 1.14.1"
},
"scripts": {
"test": "make test"
"lint": "eslint index.js",
"test": "node test/run.js && npm run test-typings",
"test-typings": "tsc -p tsconfig.json"
},
"main": "index",
"engines": {
"node": ">= 0.6.x"
},
"files": [
"index.js"
"index.js",
"typings/index.d.ts"
],
"dependencies": {
"graceful-readlink": ">= 1.0.0"
}
"dependencies": {},
"devDependencies": {
"@types/node": "^12.7.8",
"eslint": "^6.4.0",
"should": "^13.2.3",
"sinon": "^7.5.0",
"standard": "^14.3.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"typings": "typings/index.d.ts"
}