@pipobscure/demitasse
Version:
Miniscule BDD Testing Framework
60 lines (59 loc) • 1.35 kB
JSON
{
"name": "@pipobscure/demitasse",
"version": "2.0.4",
"description": "Miniscule BDD Testing Framework",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "npm run build && node runner.js test/*.js",
"clean": "npx shx rm -f *.js *.d.ts test/**/*.js test/**/*.d.ts",
"prepublishOnly": "npm run build"
},
"bin": {
"demitasse": "runner.js"
},
"keywords": [
"BDD",
"Testing"
],
"author": "Philipp Dunkel <pip@pipobscure.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/pipobscure/demitasse.git"
},
"bugs": {
"url": "https://github.com/pipobscure/demitasse/issues"
},
"homepage": "https://github.com/pipobscure/demitasse#readme",
"dependencies": {
"glob": "^7.1.6"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^12.12.31",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always"
}
}