|
| 1 | +{ |
| 2 | + "name": "@dojo/cli-test-unit", |
| 3 | + "version": "4.0.0-pre", |
| 4 | + "description": "", |
| 5 | + "private": true, |
| 6 | + "homepage": "https://dojo.io", |
| 7 | + "license": "BSD-3-Clause", |
| 8 | + "main": "main.js", |
| 9 | + "repository": { |
| 10 | + "type": "git", |
| 11 | + "url": "https://github.com/dojo/cli-test-unit.git" |
| 12 | + }, |
| 13 | + "scripts": { |
| 14 | + "build:static:dev": "cpx \"{src,tests}/**/*.{d.ts,json,test}\" dist/dev", |
| 15 | + "build:static:release": "cpx \"src/**/*.{d.ts,json}\" dist/release", |
| 16 | + "build:cjs": "tsc", |
| 17 | + "build": "npm-run-all -p build:** -s dojo-package", |
| 18 | + "clean": "rimraf dist coverage", |
| 19 | + "dojo-package": "dojo-package", |
| 20 | + "dojo-release": "dojo-release", |
| 21 | + "intern": "intern", |
| 22 | + "lint:tslint": "tslint -p .", |
| 23 | + "lint:prettier": "prettier -l \"{src,tests}/**/*.{ts,tsx}\"", |
| 24 | + "lint": "run-p lint:*", |
| 25 | + "precommit": "lint-staged", |
| 26 | + "prettier": "prettier --write \"{src,tests}/**/*.{ts,tsx}\"", |
| 27 | + "release": "run-s lint clean build \"dojo-release -- {@}\" --", |
| 28 | + "test": "run-s lint build intern", |
| 29 | + "uploadCoverage": "codecov --file=coverage/coverage.json", |
| 30 | + "watch:ts": "dojo-tsc-watcher -p tsconfig.json -- dojo-package", |
| 31 | + "watch": "run-p watch:ts \"build:static:** -- --watch\"" |
| 32 | + }, |
| 33 | + "devDependencies": { |
| 34 | + "@dojo/cli": "^4.0.0", |
| 35 | + "@dojo/scripts": "^3.1.0", |
| 36 | + "@types/chalk": "2.2.0", |
| 37 | + "@types/chokidar": "1.7.5", |
| 38 | + "@types/cross-spawn": "6.0.0", |
| 39 | + "@types/css-modules-require-hook": "4.0.1", |
| 40 | + "@types/figures": "2.0.0", |
| 41 | + "@types/fs-extra": "5.0.4", |
| 42 | + "@types/jsdom": "11.0.4", |
| 43 | + "@types/log-update": "2.0.0", |
| 44 | + "@types/mockery": "^1.4.29", |
| 45 | + "@types/ora": "3.0.0", |
| 46 | + "@types/sinon": "~4.3.3", |
| 47 | + "@types/yargs": "^8.0.2", |
| 48 | + "cpx": "^1.5.0", |
| 49 | + "mockery": "^1.7.0", |
| 50 | + "npm-run-all": "^4.1.5", |
| 51 | + "prettier": "^1.15.3", |
| 52 | + "rimraf": "^2.6.2", |
| 53 | + "sinon": "~4.5.0", |
| 54 | + "typescript": "~2.6.1", |
| 55 | + "yargs": "^5.0.0" |
| 56 | + }, |
| 57 | + "dependencies": { |
| 58 | + }, |
| 59 | + "lint-staged": { |
| 60 | + "*.{ts,tsx}": [ |
| 61 | + "prettier --write", |
| 62 | + "git add" |
| 63 | + ] |
| 64 | + }, |
| 65 | + "prettier": { |
| 66 | + "singleQuote": true, |
| 67 | + "tabWidth": 4, |
| 68 | + "useTabs": true, |
| 69 | + "parser": "typescript", |
| 70 | + "printWidth": 120, |
| 71 | + "arrowParens": "always" |
| 72 | + } |
| 73 | +} |
0 commit comments