112 lines
2.9 KiB
JSON
112 lines
2.9 KiB
JSON
{
|
|
"name": "@dojo/cli",
|
|
"version": "8.0.1-pre",
|
|
"description": "Dojo CLI utility",
|
|
"homepage": "https://dojo.io",
|
|
"bugs": {
|
|
"url": "https://github.com/dojo/cli/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=6",
|
|
"npm": ">=3"
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"keywords": [
|
|
"dojo",
|
|
"cli"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dojo/cli.git"
|
|
},
|
|
"scripts": {
|
|
"build:static:dev": "cpx \"{src,tests}/**/*.{d.ts,json,ejs}\" dist/dev",
|
|
"build:static:release": "cpx \"src/**/*.{d.ts,json}\" dist/release",
|
|
"build:umd": "tsc",
|
|
"build": "npm-run-all -p build:** -s dojo-package",
|
|
"clean": "rimraf dist coverage",
|
|
"dojo-package": "dojo-package",
|
|
"dojo-release": "dojo-release",
|
|
"intern": "intern",
|
|
"lint:ts": "tslint -p .",
|
|
"lint:prettier": "prettier -l \"{src,tests}/**/*.{ts,tsx}\"",
|
|
"lint": "run-p lint:*",
|
|
"precommit": "lint-staged",
|
|
"prettier": "prettier --write \"{src,tests}/**/*.{ts,tsx}\"",
|
|
"release": "run-s lint clean build \"dojo-release -- {@}\" --",
|
|
"test": "run-s build intern",
|
|
"uploadCoverage": "codecov --file=coverage/coverage.json",
|
|
"watch:ts": "dojo-tsc-watcher -p tsconfig.json -- dojo-package",
|
|
"watch": "run-p watch:ts \"build:static:** -- --watch\""
|
|
},
|
|
"bin": {
|
|
"dojo": "bin/dojo.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"typings.json"
|
|
],
|
|
"dependencies": {
|
|
"@speedy/json-extends": "1.2.0",
|
|
"ajv": "6.6.2",
|
|
"chalk": "2.4.1",
|
|
"configstore": "3.1.2",
|
|
"cross-spawn": "5.1.0",
|
|
"detect-indent": "5.0.0",
|
|
"ejs": "2.6.1",
|
|
"fs-extra": "7.0.0",
|
|
"globby": "6.1.0",
|
|
"inquirer": "6.2.2",
|
|
"jsonschema": "1.2.4",
|
|
"libnpmsearch": "^2.0.0",
|
|
"pkg-dir": "2.0.0",
|
|
"readline-sync": "1.4.9",
|
|
"slice-ansi": "1.0.0",
|
|
"string-width": "2.1.1",
|
|
"tslib": "1.8.1",
|
|
"update-notifier": "2.5.0",
|
|
"yargs": "10.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@dojo/scripts": "4.0.2",
|
|
"@types/configstore": "^2.1.1",
|
|
"@types/detect-indent": "^5.0.0",
|
|
"@types/ejs": "2.6.3",
|
|
"@types/execa": "^0.9.0",
|
|
"@types/fs-extra": "^5.0.0",
|
|
"@types/glob": "^5.0.30",
|
|
"@types/globby": "^0.6.0",
|
|
"@types/inquirer": "0.0.44",
|
|
"@types/mockery": "^1.4.29",
|
|
"@types/node": "~9.6.5",
|
|
"@types/readline-sync": "^1.4.3",
|
|
"@types/sinon": "~4.3.3",
|
|
"@types/update-notifier": "^1.0.1",
|
|
"@types/yargs": "^10.0.0",
|
|
"codecov": "~3.0.4",
|
|
"cpx": "~1.5.0",
|
|
"glob": "^7.0.3",
|
|
"husky": "0.14.3",
|
|
"lint-staged": "9.2.1",
|
|
"mockery": "^2.1.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "~2.6.2",
|
|
"sinon": "~4.5.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"tabWidth": 4,
|
|
"useTabs": true,
|
|
"parser": "typescript",
|
|
"printWidth": 120,
|
|
"arrowParens": "always"
|
|
}
|
|
}
|