Skip to content

Commit

Permalink
Rebuild scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Aug 30, 2016
1 parent 51a17b6 commit cbcdccb
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 30 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules/
_docpress
/coverage
.nyc_output
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
language: node_js
node_js:
- 'stable'
- '6'
- '5'
- '4'
cache:
directories:
- node_modules
after_success:
- npm run coveralls
72 changes: 42 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,56 @@
{
"name": "docpress-core",
"description": "Metalsmith plugin to generate Docpress site data from a project. Part of the [Docpress] project.",
"homepage": "https://github.com/docpress/docpress-core#readme",
"version": "0.6.13",
"author": "Rico Sta. Cruz <rico@ricostacruz.com>",
"main": "index.js",
"author": {
"email": "rico@ricostacruz.com",
"name": "Rico Sta. Cruz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docpress/docpress-core.git"
},
"bugs": {
"url": "https://github.com/docpress/docpress-core/issues"
},
"dependencies": {
"cheerio": "0.20.0",
"debug": "2.2.0",
"highlight.js": "9.5.0",
"lodash": "3.10.1",
"lru-cache": "4.0.1",
"markdown-it": "7.0.1",
"markdown-it-decorate": "1.2.1",
"marked": "0.3.5",
"metalsmith": "2.2.0",
"slugify": "0.1.1",
"ware": "1.3.0"
"cheerio": "~0.20.0",
"debug": "~2.2.0",
"highlight.js": "~9.5.0",
"lodash": "~3.10.1",
"lru-cache": "~4.0.1",
"markdown-it": "~7.0.1",
"markdown-it-decorate": "~1.2.1",
"marked": "~0.3.5",
"metalsmith": "~2.2.0",
"slugify": "~0.1.1",
"ware": "~1.3.0"
},
"devDependencies": {
"expect": "1.20.2",
"istanbul": "0.4.5",
"mocha": "2.4.4",
"mocha-clean": "1.0.0",
"mocha-standard": "1.0.0",
"standard": "6.0.8"
"coveralls": "~2.11.12",
"expect": "~1.20.2",
"istanbul": "~0.4.5",
"mocha": "~2.4.4",
"mocha-clean": "~1.0.0",
"nyc": "~8.1.0",
"standard": "~6.0.8"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/docpress/docpress-core#readme",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/docpress/docpress-core.git"
"standard": {
"global": [
"before",
"beforeEach",
"describe",
"expect",
"it"
]
},
"scripts": {
"coverage": "istanbul cover _mocha -x 'fixture/**/metalsmith.js' -- -R spec",
"test": "mocha"
}
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"pretest": "npm run lint",
"test": "nyc mocha"
},
"license": "MIT"
}

0 comments on commit cbcdccb

Please sign in to comment.