include-me
Version:
[](https://travis-ci.com/Emre-Kul/include-me) 
58 lines (57 loc) • 1.45 kB
JSON
{
"name": "include-me",
"version": "0.0.2",
"description": "",
"main": "./dist/index.js",
"scripts": {
"prepublish": "yarn lint && yarn build",
"test": "nyc --check-coverage --lines=85 cross-env NODE_ENV=production mocha -r ts-node/register --recursive 'test/*/*.spec.ts' 'test/**/*.spec.ts'",
"build": "node_modules/.bin/tsc",
"watch": "node_modules/.bin/tsc -w",
"start:example": "node ./example/index.js",
"lint": "node_modules/.bin/tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
"lint:fix": "node_modules/.bin/tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts --fix"
},
"keywords": [
"include",
"me",
"templating"
],
"author": "Emre Kul <emrekul35@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/faker": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/sinon": "^7.0.2",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"faker": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"test/**",
"dist/**",
"coverage/**",
"example",
"docs",
"src/interfaces"
],
"reporter": [
"text"
],
"all": true
}
}