2019-04-29 14:45:20 +00:00
|
|
|
{
|
|
|
|
"name": "embark-plugin-cmd",
|
2019-05-15 23:44:46 +00:00
|
|
|
"version": "4.1.0-beta.1",
|
2019-04-29 14:45:20 +00:00
|
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
|
|
"contributors": [],
|
|
|
|
"description": "Plugin installation utility for Embark",
|
|
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embark-plugin-cmd#readme",
|
|
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"directory": "packages/embark-plugin-cmd",
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
"scripts": {
|
2019-05-03 19:57:54 +00:00
|
|
|
"build": "cross-env BABEL_ENV=node babel src --extensions \".js\" --out-dir dist --root-mode upward --source-maps",
|
2019-04-29 14:45:20 +00:00
|
|
|
"ci": "npm run qa",
|
|
|
|
"clean": "npm run reset",
|
|
|
|
"lint": "npm-run-all lint:*",
|
|
|
|
"lint:js": "eslint src/",
|
2019-05-03 19:57:54 +00:00
|
|
|
"// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
2019-04-29 14:45:20 +00:00
|
|
|
"package": "npm pack",
|
|
|
|
"// qa": "npm-run-all lint typecheck build package",
|
|
|
|
"qa": "npm-run-all lint build package",
|
|
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
|
|
|
"start": "npm run watch",
|
|
|
|
"// typecheck": "tsc",
|
|
|
|
"watch": "run-p watch:*",
|
|
|
|
"watch:build": "npm run build -- --verbose --watch",
|
|
|
|
"// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "../../.eslintrc.json"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"async": "2.6.1",
|
2019-05-15 23:44:46 +00:00
|
|
|
"embark-i18n": "^4.1.0-beta.1",
|
|
|
|
"embark-utils": "^4.1.0-beta.1"
|
2019-04-29 14:45:20 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "7.2.3",
|
|
|
|
"@babel/core": "7.2.2",
|
|
|
|
"cross-env": "5.2.0",
|
|
|
|
"eslint": "5.7.0",
|
|
|
|
"npm-run-all": "4.1.5",
|
|
|
|
"rimraf": "2.6.3",
|
2019-05-03 19:57:54 +00:00
|
|
|
"tslint": "5.16.0",
|
|
|
|
"typescript": "3.4.5"
|
2019-04-29 14:45:20 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.12.0",
|
|
|
|
"npm": ">=6.4.1",
|
|
|
|
"yarn": ">=1.12.3"
|
|
|
|
}
|
|
|
|
}
|