a6625cfadc
* WIP #945 Added some structure for the extensions support * WIP #945 Added ext installation using npm * WIP #945 Added some structure for the extensions support * WIP #945 Added ext installation using npm * WIP #945 Restructured export formats * WIP #945 Added ExportFormat:Pipeline installation * WIP #945 Updated extension installer * WIP #945 Fixed format.js format path * WIP #945 Added reinstalling message * WIP #945 Updated the default Basic CLI * WIP Updated deserializers and cli deserializer * WIP #945 Added simple static ext config * WIP #945 Added custom config dialog for exporting pipelines * WIP #945 Added dynamic updating based on config * WIP #945 Added section headers * WIP #945 Renamed to Export:Pipeline * WIP #945 moved cli export to first option * WIP #945 Renamed plugin 'GenerateExecFile' -> 'Export' * WIP #945 Renamed GenExecFile -> Export * WIP #945 Added 'deepforge extension remove X' * WIP #945 Added 'list' command for extensions * WIP #945 fixed minor linting issues * WIP #945 aliased remove/rm, list/ls * WIP #945 Moved gen installation fn to utils/extender * WIP #945 Added ext reinstall script on postinstall * WIP #945 don't prompt if no options * WIP #945 Updated the plugin name in registry * WIP #945 Updated format template * WIP #945 Fixed cli tests * WIP #945 Removed unused main method * WIP #945 Fixed linter issues
47 linhas
1.2 KiB
JSON
47 linhas
1.2 KiB
JSON
{
|
|
"name": "deepforge",
|
|
"bin": {
|
|
"deepforge": "./bin/deepforge"
|
|
},
|
|
"scripts": {
|
|
"start": "node app.js",
|
|
"postinstall": "node utils/reinstall-extensions.js",
|
|
"start-dev": "NODE_ENV=dev node app.js",
|
|
"local": "node ./bin/start-local.js",
|
|
"worker": "node ./bin/start-worker.js",
|
|
"test": "mkdir ./test-tmp; mocha --recursive test",
|
|
"watch-test": "nodemon --exec 'mocha --recursive test'",
|
|
"build-nn": "node ./utils/nn-parser.js"
|
|
},
|
|
"version": "0.22.0",
|
|
"dependencies": {
|
|
"commander": "^2.9.0",
|
|
"dotenv": "^2.0.0",
|
|
"exists-file": "^2.1.0",
|
|
"express": "^4.14.0",
|
|
"graceful-fs": "^4.1.10",
|
|
"lodash.difference": "^4.1.2",
|
|
"lodash.merge": "^4.5.1",
|
|
"lodash.template": "^4.4.0",
|
|
"mongodb": "^2.2.10",
|
|
"nodemon": "^1.9.2",
|
|
"npm": "^4.0.5",
|
|
"q": "1.4.1",
|
|
"rimraf": "^2.4.0",
|
|
"webgme": "^2.7.1",
|
|
"webgme-autoviz": "^2.2.0",
|
|
"webgme-breadcrumbheader": "^2.1.1",
|
|
"webgme-chflayout": "^2.0.0",
|
|
"webgme-easydag": "dfst/webgme-easydag",
|
|
"webgme-executor-worker": "^1.0.1",
|
|
"webgme-fab": "dfst/webgme-fab",
|
|
"webgme-simple-nodes": "^2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^3.0.0",
|
|
"jszip": "^2.5.0",
|
|
"mocha": "^2.2.5",
|
|
"mockery": "^1.7.0"
|
|
}
|
|
}
|