This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-cli/package.json

37 lines
900 B
JSON
Raw Normal View History

2019-12-04 14:16:57 +08:00
{
"name": "doric-cli",
2020-04-11 15:05:27 +08:00
"version": "0.4.2",
2019-12-04 14:16:57 +08:00
"description": "Doric command line tools",
"main": "index.js",
"bin": {
"doric": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/penfeizhou/doric.git"
},
"author": "pengfei.zhou",
"license": "ISC",
"bugs": {
"url": "https://github.com/penfeizhou/doric/issues"
},
"homepage": "https://github.com/penfeizhou/doric#readme",
"dependencies": {
"child_process": "^1.0.2",
2019-12-20 11:20:00 +08:00
"chokidar": "^3.3.1",
2020-01-10 16:19:53 +08:00
"commander": "^4.1.0",
2019-12-04 14:16:57 +08:00
"keypress": "^0.2.1",
"nodejs-websocket": "^1.7.2",
"qrcode-terminal": "^0.12.0",
2020-01-10 16:19:53 +08:00
"rollup": "^1.29.0",
2019-12-04 14:16:57 +08:00
"shelljs": "^0.8.3",
"source-map-merger": "^0.2.0",
2019-12-23 10:09:49 +08:00
"typescript": "^3.7.4"
2020-01-10 14:56:30 +08:00
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
2019-12-04 14:16:57 +08:00
}
2020-04-11 15:05:27 +08:00
}