2012-12-24 14:11:35 +01:00
|
|
|
{
|
2014-07-17 22:57:10 +02:00
|
|
|
"name": "timestring",
|
2016-11-15 20:35:41 +01:00
|
|
|
"version": "3.2.0",
|
2014-07-17 22:57:10 +02:00
|
|
|
"description": "Parse a human readable time string into a time based value",
|
2016-03-06 22:43:53 +01:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2016-03-06 22:49:16 +01:00
|
|
|
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -x test.js test.js",
|
2016-03-06 22:43:53 +01:00
|
|
|
"dev": "watch 'clear; npm test -s;' ./ -d",
|
2016-12-16 20:52:21 +01:00
|
|
|
"lint": "standard *.js",
|
2016-03-06 22:43:53 +01:00
|
|
|
"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"
|
|
|
|
},
|
2016-03-06 22:43:53 +01:00
|
|
|
"homepage": "https://github.com/mike182uk/timestring",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/mike182uk/timestring/issues"
|
2016-01-15 11:00:12 +01:00
|
|
|
},
|
2016-03-06 22:43:53 +01:00
|
|
|
"keywords": [
|
|
|
|
"time",
|
|
|
|
"timestring",
|
|
|
|
"duration",
|
|
|
|
"parse",
|
|
|
|
"string",
|
|
|
|
"date"
|
|
|
|
],
|
2016-03-06 22:40:53 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">=0.10"
|
|
|
|
},
|
2016-03-06 22:43:53 +01:00
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.0.0"
|
|
|
|
},
|
2014-07-17 22:57:10 +02:00
|
|
|
"devDependencies": {
|
2016-01-08 11:05:59 +01:00
|
|
|
"chai": "^3.4.1",
|
2016-10-03 19:40:14 +02:00
|
|
|
"codeclimate-test-reporter": "^0.4.0",
|
2015-05-02 21:31:51 +02:00
|
|
|
"coveralls": "^2.11.2",
|
2016-01-08 11:05:59 +01:00
|
|
|
"istanbul": "^0.4.1",
|
2016-08-01 08:19:34 +02:00
|
|
|
"mocha": "^3.0.0",
|
2016-02-21 11:54:47 +01:00
|
|
|
"mocha-lcov-reporter": "1.2.0",
|
2016-12-16 20:52:21 +01:00
|
|
|
"standard": "^8.6.0",
|
2016-10-06 18:01:06 +02:00
|
|
|
"watch": "^1.0.1"
|
2014-07-17 22:57:10 +02:00
|
|
|
}
|
2016-03-06 22:40:53 +01:00
|
|
|
}
|