All checks were successful
continuous-integration/drone/push Build is passing
26 lines
633 B
JSON
26 lines
633 B
JSON
{
|
|
"name": "@rondo.dev/rondo-cli",
|
|
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/rondo-cli",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "tslint --project .",
|
|
"compile": "tsc --build .",
|
|
"preinstall": "node ./preinstall.js",
|
|
"clean": "rm -rf lib/"
|
|
},
|
|
"bin": {
|
|
"rondo": "./lib/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@rondo.dev/argparse": "file:../argparse",
|
|
"browser-unpack": "^1.4.2",
|
|
"rimraf": "^3.0.0",
|
|
"typescript": "^3.6.4"
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"module": "esm/index.js",
|
|
"main": "lib/index.js"
|
|
}
|