54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "timestring",
|
|
"version": "3.0.1",
|
|
"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"
|
|
},
|
|
"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",
|
|
"parse",
|
|
"string",
|
|
"date"
|
|
],
|
|
"engines": {
|
|
"node": ">=0.10"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^3.4.1",
|
|
"codeclimate-test-reporter": "^0.3.0",
|
|
"coveralls": "^2.11.2",
|
|
"cz-conventional-changelog": "^1.1.5",
|
|
"istanbul": "^0.4.1",
|
|
"jscs": "^3.0.3",
|
|
"jshint": "^2.9.1",
|
|
"mocha": "^2.2.4",
|
|
"mocha-lcov-reporter": "1.2.0",
|
|
"watch": "^0.17.1"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|