package.json
{
"name": "occurences",
"version": "2.2.2",
"description": "Calculate the number of occurrences of each word in a text. Words smaller than two letters will be ignored.",
"main": "main.js",
"dependencies": {},
"keywords": [
"string",
"statistics",
"stats",
"occurences",
"count",
"words"
],
"devDependencies": {
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0"
},
"scripts": {
"test": "mocha --reporter spec",
"postversion": "git push origin master --tags",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proustibat/occurences.git"
},
"author": "Jennifer Proust",
"license": "MIT",
"bugs": {
"url": "https://github.com/proustibat/occurences/issues"
},
"homepage": "https://github.com/proustibat/occurences#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}