Files

57 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2019-04-29 10:45:20 -04:00
{
"name": "embark-plugin-cmd",
2020-04-27 16:04:43 -05:00
"version": "6.0.0",
2019-04-29 10:45:20 -04:00
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Plugin installation utility for Embark",
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/plugins/plugin-cmd#readme",
"bugs": "https://github.com/embarklabs/embark/issues",
2019-04-29 10:45:20 -04:00
"license": "MIT",
"repository": {
"directory": "packages/plugins/plugin-cmd",
2019-04-29 10:45:20 -04:00
"type": "git",
"url": "https://github.com/embarklabs/embark.git"
2019-04-29 10:45:20 -04:00
},
"files": [
"dist",
"index.js"
2019-04-29 10:45:20 -04:00
],
"main": "./index.js",
2019-12-11 11:01:38 -06:00
"types": "./dist/index.d.ts",
"embark-collective": {
2019-12-11 11:01:38 -06:00
"build:node": true,
"typecheck": true
},
2019-04-29 10:45:20 -04:00
"scripts": {
"_build": "npm run solo -- build",
2019-12-11 11:01:38 -06:00
"_typecheck": "npm run solo -- typecheck",
2019-04-29 10:45:20 -04:00
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "eslint src/",
2019-12-11 11:01:38 -06:00
"qa": "npm-run-all lint _typecheck _build",
2019-04-29 10:45:20 -04:00
"reset": "npx rimraf dist embark-*.tgz package",
"solo": "embark-solo"
2019-04-29 10:45:20 -04:00
},
"eslintConfig": {
"extends": "../../../.eslintrc.json"
2019-04-29 10:45:20 -04:00
},
"dependencies": {
"@babel/runtime-corejs3": "7.8.4",
2020-03-06 07:20:08 +00:00
"async": "3.2.0",
"core-js": "3.4.3",
2020-04-27 16:04:43 -05:00
"embark-i18n": "^6.0.0",
"embark-utils": "^6.0.0"
2019-04-29 10:45:20 -04:00
},
"devDependencies": {
2020-04-27 16:04:43 -05:00
"embark-solo": "^6.0.0",
"eslint": "6.8.0",
2019-04-29 10:45:20 -04:00
"npm-run-all": "4.1.5",
"rimraf": "3.0.0"
2019-04-29 10:45:20 -04:00
},
"engines": {
2020-01-17 11:32:32 -06:00
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
2019-04-29 10:45:20 -04:00
}
}