beater-matcher
Version:
A matcher library for beater.
74 lines (73 loc) • 2.12 kB
JSON
{
"name": "beater-matcher",
"description": "A matcher library for beater.",
"version": "0.2.0",
"author": "bouzuya <m@bouzuya.net> (https://bouzuya.net/)",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
},
"bugs": {
"url": "https://github.com/bouzuya/beater-matcher/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@types/node": "^10.17.14",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"beater": "^9.0.0",
"beater-helpers": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.2",
"watch": "^1.0.2"
},
"files": [
"lib"
],
"homepage": "https://github.com/bouzuya/beater-matcher",
"keywords": [
"beater",
"bouzuya",
"matcher",
"test",
"testing"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bouzuya/beater-matcher.git"
},
"scripts": {
"build": "npm-run-all -s build:format build:es2015 build:es5 build:lib",
"build:es2015": "tsc",
"build:es5": "babel --out-dir .tmp/es5/ --source-maps inline .tmp/es2015/",
"build:format": "prettier --check '{src,test}/**/*.ts'",
"build:lib": "babel --copy-files --no-comments --out-dir lib/ .tmp/es2015/src/",
"clean": "rimraf \".tmp\" \"lib\"",
"format": "prettier --write '{src,test}/**/*.ts'",
"prepare": "npm-run-all -s \"clean\" \"build\"",
"test": "nyc node .tmp/es5/test/index.js",
"watch": "npm-run-all -p \"watch:*\"",
"watch:es2015": "npm run build:es2015 -- --watch",
"watch:es5": "npm run build:es5 -- --watch",
"watch:lib": "watch --wait 2 'npm run build:lib' '.tmp/es5/src/'",
"watch:test": "watch --wait 2 'npm test' '.tmp/es5/src' '.tmp/es5/test'"
}
}