2012-12-24 14:11:35 +01:00
|
|
|
{
|
2014-07-17 22:57:10 +02:00
|
|
|
"name": "timestring",
|
2016-03-06 22:53:22 +01:00
|
|
|
"version": "3.0.1",
|
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",
|
|
|
|
"sa": "jshint index.js && jscs index.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"
|
|
|
|
},
|
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-01-20 00:45:35 +01:00
|
|
|
"codeclimate-test-reporter": "^0.3.0",
|
2015-05-02 21:31:51 +02:00
|
|
|
"coveralls": "^2.11.2",
|
2016-03-06 22:39:36 +01:00
|
|
|
"cz-conventional-changelog": "^1.1.5",
|
2016-01-08 11:05:59 +01:00
|
|
|
"istanbul": "^0.4.1",
|
2016-04-16 19:27:18 +02:00
|
|
|
"jscs": "^3.0.3",
|
2016-01-15 11:00:12 +01:00
|
|
|
"jshint": "^2.9.1",
|
2015-04-30 12:37:57 +02:00
|
|
|
"mocha": "^2.2.4",
|
2016-02-21 11:54:47 +01:00
|
|
|
"mocha-lcov-reporter": "1.2.0",
|
2016-06-20 20:54:12 +02:00
|
|
|
"watch": "^0.19.1"
|
2016-01-15 21:05:30 +01:00
|
|
|
},
|
2016-03-06 22:39:36 +01:00
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
|
|
}
|
2014-07-17 22:57:10 +02:00
|
|
|
}
|
2016-03-06 22:40:53 +01:00
|
|
|
}
|