timestring/package.json

41 lines
1012 B
JSON
Raw Normal View History

2012-12-24 14:11:35 +01:00
{
2014-07-17 22:57:10 +02:00
"name": "timestring",
2019-05-04 21:30:49 +02:00
"version": "6.0.0",
2014-07-17 22:57:10 +02:00
"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",
2016-12-16 20:52:21 +01:00
"lint": "standard *.js",
"test": "mocha test.js"
},
2014-07-17 22:57:10 +02:00
"author": "Michael David Barrett <mike182uk@gmail.com>",
2015-07-09 17:19:42 +02:00
"license": "MIT",
2014-07-17 22:57:10 +02:00
"repository": {
2014-07-17 22:37:26 +02:00
"type": "git",
"url": "git://github.com/mike182uk/timestring.git"
},
"homepage": "https://github.com/mike182uk/timestring",
"bugs": {
"url": "https://github.com/mike182uk/timestring/issues"
2016-01-15 11:00:12 +01:00
},
"keywords": [
"time",
"timestring",
"duration",
"date"
],
2016-03-06 22:40:53 +01:00
"engines": {
2019-05-04 21:13:34 +02:00
"node": ">=8"
},
2014-07-17 22:57:10 +02:00
"devDependencies": {
2019-05-04 21:11:03 +02:00
"chai": "^4.2.0",
2019-08-24 11:02:47 +02:00
"coveralls": "^3.0.6",
2019-05-04 21:11:03 +02:00
"istanbul": "^0.4.5",
"mocha": "^7.0.1",
"mocha-lcov-reporter": "1.3.0",
"standard": "^16.0.0",
2019-05-04 21:11:03 +02:00
"watch": "^1.0.2"
2014-07-17 22:57:10 +02:00
}
2016-03-06 22:40:53 +01:00
}