mirror of
https://github.com/xodio/xod.git
synced 2026-03-18 22:56:51 +01:00
Squashed commits: [af77987] refactor(xod-client, xod-client-browser, xod-client-electron): move common webpack config into xod-client, and extend it with specific options in other endpoint clients (browser/electron) [ddae62d] chore(xod): update `hm-def` to latest `0.2.1` version (that uses the same Ramda version) [5d80680] chore(xod): prepare all Ramda imports and some functions to migrate to 0.25.1 to be optimized better by tree-shaker (0.25.0 already has a features for better tree shaking, but it has a lot of bugs and perfomance regressions, so we’ll stay at 0.24.1 for a while) [9c05d6c] chore(xod-client-browser, xod-client-electron): enable UglifyJS webpack plugin to eliminate dead code and minify bundle (7.8MB -> 3.8MB) [cafbfcf] chore(xod, xod-client-browser, xod-client-electron): update webpack to version 3, update loaders,
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "xod-cli",
|
|
"version": "0.17.0",
|
|
"description": "XOD project: Command Line Interface",
|
|
"scripts": {
|
|
"build:workspace": "cpx \"../../workspace/__lib__/**\" \"./__lib__\"",
|
|
"build:src": "babel src/ -d bin/ --source-maps",
|
|
"build": "yarn run build:src && yarn run build:workspace",
|
|
"dev": "yarn run build --watch",
|
|
"test": "mocha test/**/*.spec.js"
|
|
},
|
|
"bin": {
|
|
"xodc": "./bin/xodc.js"
|
|
},
|
|
"repository": {},
|
|
"keywords": [],
|
|
"author": "XOD Team <dev@xod.io>",
|
|
"license": "AGPL-3.0",
|
|
"main": "dist/index.js",
|
|
"dependencies": {
|
|
"cli-color": "^1.1.0",
|
|
"docopt": "^0.6.2",
|
|
"hm-def": "^0.2.1",
|
|
"inquirer": "^3.2.0",
|
|
"ramda": "^0.24.1",
|
|
"ramda-fantasy": "^0.8.0",
|
|
"sanctuary-def": "^0.12.1",
|
|
"source-map-support": "^0.4.15",
|
|
"swagger-client": "^3.4.3",
|
|
"xod-arduino": "^0.17.0",
|
|
"xod-fs": "^0.17.0",
|
|
"xod-func-tools": "^0.17.0",
|
|
"xod-pm": "^0.17.0",
|
|
"xod-project": "^0.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.0.0",
|
|
"child-process-promise": "^2.2.1",
|
|
"cpx": "^1.5.0",
|
|
"fs-extra": "^4.0.2"
|
|
}
|
|
}
|