New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

backpat

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backpat - npm Package Compare versions

Comparing version 0.4.0 to 0.5.0

.travis.yml

19

CHANGELOG.md
# Change Log
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased
### Added
-
### Changed
- Renamed test files to exclude them from coverage calculations
## 0.5.0 - 2016-12-9
### Added
- Increase test coverage (~65%)
- Add validate script to parallelize linting and testing in order to simplify contributions
- Add mocha options `mocha.opts` file and move test files to `src` folder
- Expose `expect` assertions to test files
- Add .travis.yml config
- Add build / coverage badges
## 0.4.0 - 2016-12-9

@@ -52,2 +67,2 @@ ### Added

- Mocha dependencies are in place, however no tests have been written
- Module discovers and reads root package.json in limited dev environments
- Module discovers and reads root package.json in limited dev environments

23

package.json
{
"name": "backpat",
"version": "0.4.0",
"version": "0.5.0",
"description": "A simple tool for high-fiving your tech stack",
"main": "index.js",
"main": "src/index.js",
"scripts": {
"test": "istanbul cover _mocha test"
"test": "nyc mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"watch:test": "mocha:watch",
"lint": "eslint src",
"validate": "npm-run-all --parallel lint test"
},

@@ -21,8 +25,17 @@ "repository": {

"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"coveralls": "^2.11.15",
"eslint": "^3.8.1",
"eslint-plugin-flowtype": "^2.25.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.1.2"
"mocha": "^3.1.2",
"npm-run-all": "^3.1.2",
"nyc": "^10.0.0"
},
"nyc": {
"check-coverage": true,
"functions": 90,
"lines": 90,
"statements": 90
},
"dependencies": {}
}
# Backpat
[![Build Status](https://travis-ci.org/cachilders/backpat.png?branch=master)](https://travis-ci.org/cachilders/backpat) [![Coverage Status](https://coveralls.io/repos/github/cachilders/backpat/badge.svg?branch=master)](https://coveralls.io/github/cachilders/backpat?branch=master)
Backpat is a simple tool for use in automating the production of tech stack

@@ -4,0 +6,0 @@ notes in projects. Think along the lines of About pages with links for crediting

let util = require('util');
let backpat = require('./index').backpat;
let backpat = require('./src/index').backpat;

@@ -4,0 +4,0 @@ // Run this script to test Backpat's output

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc