barrelsby-alias
Version:
Barrelsby fork providing an alias builder.
77 lines (76 loc) • 2.18 kB
JSON
{
"name": "barrelsby-alias",
"version": "1.0.3",
"description": "Barrelsby fork providing an alias builder.",
"main": "index.js",
"scripts": {
"clean": "rimraf bin/",
"build_tsc": "tsc",
"build_tslint": "tslint --project tsconfig.json -t stylish",
"build": "npm run clean && npm run build_tsc && npm run build_tslint",
"tests_integration": "node bin/index.js -c barrelsby.json",
"tests_unit": "istanbul cover --report json --root \"./bin\" -x \"**/*.test.js\" node_modules/mocha/bin/_mocha \"bin/**/*.test.js\"",
"remap_coverage": "remap-istanbul -i coverage/coverage-final.json -t json -o coverage/coverage-final.json && rimraf coverage/coverage.json",
"html_coverage": "istanbul report html",
"tests": "npm run tests_unit && npm run tests_integration && npm run remap_coverage",
"test": "npm run build && npm run tests",
"barrelsby": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marekpw/barrelsby.git"
},
"keywords": [
"TypeScript",
"Barrel",
"Module",
"Barrelsby"
],
"author": {
"name": "Ben Coveney",
"email": "bencoveney@gmail.com",
"url": "https://github.com/bencoveney"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bencoveney/barrelsby/issues"
},
"homepage": "https://github.com/bencoveney/barrelsby#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.3",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.3.5",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"remap-istanbul": "^0.11.1",
"rimraf": "^2.6.2",
"sinon": "^6.0.0",
"sinon-chai": "^3.2.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"bin": {
"barrelsby": "bin/index.js"
},
"engine": {
"node": ">=0.10"
},
"dependencies": {
"yargs": "^12.0.1"
},
"contributors": [
{
"name": "Ben Coveney",
"email": "bencoveney@gmail.com",
"url": "https://github.com/bencoveney"
}
],
"engines": {
"node": ">=6.0.0"
}
}