UNPKG

beater-reporter

Version:

beater reporter interface for TypeScript

59 lines (58 loc) 1.77 kB
{ "name": "beater-reporter", "description": "beater reporter interface for TypeScript", "version": "2.0.2", "author": { "name": "bouzuya", "email": "m@bouzuya.net", "url": "https://bouzuya.net/" }, "bugs": { "url": "https://github.com/bouzuya/beater-reporter/issues" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.4", "@types/node": "^10.17.19", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.9.0", "npm-run-all": "^4.0.2", "prettier": "^2.0.4", "rimraf": "^3.0.1", "typescript": "^3.7.4", "watch": "^1.0.2" }, "files": [ "lib/" ], "homepage": "https://github.com/bouzuya/beater-reporter", "keywords": [ "beater", "beater-reporter", "reporter" ], "license": "MIT", "main": "lib/index.js", "repository": { "type": "git", "url": "https://github.com/bouzuya/beater-reporter.git" }, "scripts": { "build": "npm-run-all -s build:format build:lint build:tmp:ts build:lib", "build:format": "prettier --check '{src,test}/**/*.ts'", "build:lib": "babel --copy-files --no-comments --out-dir lib .tmp/src", "build:lint": "eslint '{src,test}/**/*.ts'", "build:tmp:ts": "tsc", "clean": "rimraf \".tmp\" \"lib\"", "format": "prettier --write '{src,test}/**/*.ts'", "prepare": "npm-run-all \"clean\" \"build\"", "test": "exit 0", "watch": "npm-run-all \"watch:**\"", "watch:lib": "watch --wait 2 \"npm run build:lib\" \".tmp/src/\"", "watch:test": "watch --wait 2 \"npm test\" \".tmp/src/\" \".tmp/test/\"", "watch:tmp:ts": "npm run \"build:tmp:ts\" -- --watch" }, "typings": "lib/index.d.ts" }