timestring/package.json
dependabot[bot] 73f27cac48
Bump standard from 16.0.4 to 17.0.0
Bumps [standard](https://github.com/standard/standard) from 16.0.4 to 17.0.0.
- [Release notes](https://github.com/standard/standard/releases)
- [Changelog](https://github.com/standard/standard/blob/master/CHANGELOG.md)
- [Commits](https://github.com/standard/standard/compare/v16.0.4...v17.0.0)

---
updated-dependencies:
- dependency-name: standard
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-21 08:01:32 +00:00

41 lines
1012 B
JSON

{
"name": "timestring",
"version": "6.0.0",
"description": "Parse a human readable time string into a time based value",
"main": "index.js",
"scripts": {
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -x test.js test.js",
"dev": "watch 'clear; npm test -s;' ./ -d",
"lint": "standard *.js",
"test": "mocha test.js"
},
"author": "Michael David Barrett <mike182uk@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mike182uk/timestring.git"
},
"homepage": "https://github.com/mike182uk/timestring",
"bugs": {
"url": "https://github.com/mike182uk/timestring/issues"
},
"keywords": [
"time",
"timestring",
"duration",
"date"
],
"engines": {
"node": ">=8"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"istanbul": "^0.4.5",
"mocha": "^7.0.1",
"mocha-lcov-reporter": "1.3.0",
"standard": "^17.0.0",
"watch": "^1.0.2"
}
}