mirror of
https://github.com/xodio/xod.git
synced 2026-03-03 07:24:03 +01:00
92 lines
2.8 KiB
JSON
92 lines
2.8 KiB
JSON
{
|
|
"name": "xod-cli",
|
|
"version": "0.38.0",
|
|
"description": "XOD project: Command Line Interface",
|
|
"author": "XOD Team <dev@xod.io>",
|
|
"bin": {
|
|
"xodc": "./bin/run"
|
|
},
|
|
"bugs": "https://github.com/xodio/xod/issues",
|
|
"dependencies": {
|
|
"@oclif/command": "^1.5.5",
|
|
"@oclif/config": "^1.9.0",
|
|
"@oclif/errors": "^1.2.2",
|
|
"@oclif/plugin-autocomplete": "^0.1.0",
|
|
"@oclif/plugin-help": "^2.1.4",
|
|
"@oclif/plugin-not-found": "^1.2.2",
|
|
"as-table": "^1.0.36",
|
|
"chalk": "^2.4.1",
|
|
"cli-ux": "^4.9.3",
|
|
"fs-extra": "^7.0.1",
|
|
"listr": "^0.14.2",
|
|
"listr-update-renderer": "^0.4.0",
|
|
"listr-verbose-renderer": "^0.4.1",
|
|
"node-fetch": "^2.3.0",
|
|
"ramda": "^0.24.1",
|
|
"source-map-support": "^0.5.9",
|
|
"xod-arduino": "^0.38.0",
|
|
"xod-deploy-bin": "^0.38.0",
|
|
"xod-fs": "^0.38.0",
|
|
"xod-func-tools": "^0.34.0",
|
|
"xod-project": "^0.38.0",
|
|
"xod-tabtest": "^0.38.0"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/dev-cli": "^1.19.4",
|
|
"@oclif/test": "^1.2.2",
|
|
"chai": "^4.2.0",
|
|
"cpx": "^1.5.0",
|
|
"nock": "^10.0.2",
|
|
"rimraf": "^2.6.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/lib",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json",
|
|
"/bundle"
|
|
],
|
|
"homepage": "https://github.com/xodio/xod",
|
|
"keywords": [
|
|
"oclif",
|
|
"xod",
|
|
"xodlang"
|
|
],
|
|
"license": "AGPL-3.0",
|
|
"main": "bin/run",
|
|
"oclif": {
|
|
"commands": "./lib/commands",
|
|
"bin": "xodc",
|
|
"plugins": [
|
|
"@oclif/plugin-autocomplete",
|
|
"@oclif/plugin-help",
|
|
"@oclif/plugin-not-found"
|
|
],
|
|
"repositoryPrefix": "<%- repo %>/blob/master/packages/xod-cli/<%- commandPath %>",
|
|
"topics": {
|
|
"install": {
|
|
"description": "install toolchains and libraries"
|
|
}
|
|
}
|
|
},
|
|
"repository": "xodio/xod",
|
|
"scripts": {
|
|
"clean:dist": "rimraf ./lib ./bundle",
|
|
"build:workspace": "cpx \"../../workspace/**\" \"./bundle/workspace\"",
|
|
"build:tabtestWorkspace": "cpx \"../xod-tabtest/workspace/**\" \"./bundle/tabtest-workspace\"",
|
|
"build:tabtestSrc": "cpx \"../xod-tabtest/cpp/**\" \"./bundle/tabtest-cpp\"",
|
|
"build:catch2": "cpx \"../../vendor/catch2/**\" \"./bundle/catch2\"",
|
|
"build:catch2utils": "cpx \"../../cpplib/catch2utils/**\" \"./bundle/catch2utils\"",
|
|
"build:bundle": "yarn run build:workspace && yarn run build:tabtestWorkspace && yarn run build:tabtestSrc && yarn run build:catch2 && yarn run build:catch2utils",
|
|
"build:readme": "oclif-dev readme && sed -i -e 's/lib\\/commands\\//src\\/commands\\//g' README.md",
|
|
"build:src": "babel src/ -d lib/ --source-maps",
|
|
"build": "yarn run build:bundle && yarn run build:src",
|
|
"dev": "yarn run build --watch",
|
|
"postpack": "rm -f oclif.manifest.json",
|
|
"test-func": "BABEL_DISABLE_CACHE=1 mocha --opts test-func/mocha.opts test-func/**/*.spec.js"
|
|
}
|
|
}
|