timestring/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2012-12-24 14:11:35 +01:00
{
2014-07-17 22:57:10 +02:00
"name": "timestring",
"version": "3.1.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",
"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"
},
"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",
"parse",
"string",
"date"
],
2016-03-06 22:40:53 +01:00
"engines": {
"node": ">=0.10"
},
"dependencies": {
"lodash": "^4.0.0"
},
2014-07-17 22:57:10 +02:00
"devDependencies": {
"chai": "^3.4.1",
"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",
"istanbul": "^0.4.1",
"jscs": "^3.0.3",
2016-01-15 11:00:12 +01:00
"jshint": "^2.9.1",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "1.2.0",
"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
}