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 01107ea commit a62e2c7
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@ node_modules/
_docpress
/cache
/coverage
.nyc_output
6 changes: 6 additions & 0 deletions .travis.yml
@@ -1,9 +1,15 @@
language: node_js
node_js:
- 'stable'
- '6'
- '5'
- '4'
cache:
directories:
- node_modules
script:
- npm run coverage
- npm run build

after_success:
- npm run coveralls
41 changes: 26 additions & 15 deletions package.json
@@ -1,8 +1,17 @@
{
"name": "docpress-base",
"description": "Base theme for Docpress.",
"homepage": "http://docpress/docpress-base#readme",
"version": "0.6.10",
"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-base.git"
},
"bugs": {
"url": "https://github.com/docpress/docpress-base/issues"
},
Expand All @@ -26,30 +35,32 @@
"devDependencies": {
"docpress-core": "git://github.com/docpress/docpress-core.git#master",
"expect": "1.20.2",
"istanbul": "0.4.5",
"coveralls": "~2.11.12",
"nyc": "~8.1.0",
"metalsmith": "2.2.0",
"mocha": "3.0.2",
"mocha-clean": "1.0.0",
"mocha-standard": "1.0.0",
"standard": "8.0.0",
"superstatic": "4.0.3"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/docpress/docpress-base#readme",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/docpress/docpress-base.git"
"standard": {
"global": [
"describe",
"it",
"expect",
"before",
"beforeEach"
]
},
"scripts": {
"coverage": "istanbul cover _mocha -x '**/fixture/**' -- -R spec",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"pretest": "npm run lint",
"build": "mkdir -p cache && ./bin/build --css > cache/style.css && ./bin/build --js > cache/script.js",
"prepublish": "npm run build",
"test": "mocha",
"serve": "ss fixture/onmount/_docpress",
"test": "nyc mocha",
"watch": "mocha -R min --watch"
}
},
"license": "MIT"
}

0 comments on commit a62e2c7

Please sign in to comment.