boilerplate-es6
Version:
boilerplate-es6 is a template for your es6 based projects using
82 lines (81 loc) • 2.03 kB
JSON
{
"name": "boilerplate-es6",
"version": "0.2.6",
"description": "boilerplate-es6 is a template for your es6 based projects using",
"keywords": [
"es6",
"gulp",
"ecma2015",
"boilerplate"
],
"homepage": "https://github.com/stefanwalther/boilerplate-es6",
"bugs": {
"url": "https://github.com/stefanwalther/boilerplate-es6/issues"
},
"license": "MIT",
"author": {
"name": "Stefan Walther",
"url": "https://github.com/stefanwalther",
"twitter": "waltherstefan"
},
"files": [
"/dist"
],
"main": "/dist/index.js",
"repository": "stefanwalther/boilerplate-es6",
"scripts": {
"build": "gulp build",
"coverage": "babel-node ./node_modules/.bin/isparta cover _mocha",
"docs": "verb",
"lint": "eslint src",
"lint:test": "eslint test",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:integration": "npm run lint && mocha './test/integration/**/*.spec.js' --compilers js:babel-core/register --require './test/mocha.conf.js'",
"test:unit": "mocha './test/unit/**/*.spec.js' --compilers js:babel-core/register --require './test/mocha.conf.js'"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.1.1",
"eslint-config-idiomatic": "^2.1.0",
"eslint-plugin-mocha": "^4.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-format-md": "*",
"gulp-sourcemaps": "^1.6.0",
"mocha": "*",
"nyc": "^7.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"verb": {
"run": true,
"toc": false,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": []
},
"lint": {
"reflinks": true
},
"reflinks": [
"verb",
"verb-readme-generator"
]
}
}