Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "n-gram", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Get n-grams from text", | ||
"license": "MIT", | ||
"keywords": [ | ||
"natural", | ||
"language", | ||
"n", | ||
@@ -18,22 +20,23 @@ "gram", | ||
}, | ||
"author": "Titus Wormer <tituswormer@gmail.com>", | ||
"devDependencies": { | ||
"eslint": "^0.8.0", | ||
"eslint": "^0.9.0", | ||
"istanbul": "^0.3.0", | ||
"jscs": "^1.7.0", | ||
"jscs": "^1.0.0", | ||
"matcha": "^0.5.0", | ||
"mocha": "^1.20.0" | ||
"mocha": "^2.0.0" | ||
}, | ||
"author": "Titus Wormer <tituswormer@gmail.com>", | ||
"scripts": { | ||
"install-benchmark": "npm install ngram && git clone git@github.com:madbence/node-ngram.git node_modules/madbence-ngram", | ||
"benchmark": "node_modules/.bin/matcha benchmark.js", | ||
"test": "node_modules/.bin/_mocha --reporter spec --check-leaks -u exports test.js", | ||
"test-travis": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js", | ||
"lint": "npm run lint-api && npm run lint-test && npm run lint-style", | ||
"lint-api": "node_modules/.bin/eslint index.js --env node --env browser --rule 'quotes: [2, single], no-cond-assign: false'", | ||
"lint-test": "node_modules/.bin/eslint test.js --env node --env mocha --rule 'quotes: [2, single], no-loop-func: false'", | ||
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- test.js", | ||
"lint": "npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style", | ||
"lint-api": "node_modules/.bin/eslint index.js", | ||
"lint-test": "node_modules/.bin/eslint test.js --env mocha", | ||
"lint-benchmark": "node_modules/.bin/eslint benchmark.js --global set,suite,bench", | ||
"lint-style": "node_modules/.bin/jscs index.js test.js benchmark.js --reporter=inline", | ||
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- test.js", | ||
"install-benchmark": "npm install ngram && git clone git@github.com:madbence/node-ngram.git node_modules/madbence-ngram", | ||
"benchmark": "node_modules/.bin/matcha benchmark.js", | ||
"make": "npm run lint && npm run coverage" | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
# n-gram [![Build Status](https://travis-ci.org/wooorm/n-gram.svg?branch=master)](https://travis-ci.org/wooorm/n-gram) [![Coverage Status](https://img.shields.io/coveralls/wooorm/n-gram.svg)](https://coveralls.io/r/wooorm/n-gram?branch=master) | ||
# n-gram [![Build Status](https://img.shields.io/travis/wooorm/n-gram.svg?style=flat)](https://travis-ci.org/wooorm/n-gram) [![Coverage Status](https://img.shields.io/coveralls/wooorm/n-gram.svg?style=flat)](https://coveralls.io/r/wooorm/n-gram?branch=master) | ||
@@ -3,0 +3,0 @@ Get [n-grams](http://en.wikipedia.org/wiki/N-gram) in JavaScript. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
6572
0