33 lines
848 B
JSON
33 lines
848 B
JSON
{
|
|
"name": "timestring",
|
|
"description": "Parse a human readable time string into a time based value",
|
|
"homepage": "https://github.com/mike182uk/timestring",
|
|
"author": "Michael David Barrett <mike182uk@gmail.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/mike182uk/timestring.git"
|
|
},
|
|
"scripts": {
|
|
"dev": "watch 'clear; npm test -s;' ./ -d",
|
|
"sa": "jshint index.js && jscs index.js",
|
|
"test": "mocha test.js"
|
|
},
|
|
"main": "index.js",
|
|
"version": "3.0.0",
|
|
"devDependencies": {
|
|
"chai": "^3.4.1",
|
|
"codeclimate-test-reporter": "^0.1.0",
|
|
"coveralls": "^2.11.2",
|
|
"istanbul": "^0.4.1",
|
|
"jscs": "^2.8.0",
|
|
"jshint": "^2.9.1",
|
|
"mocha": "^2.2.4",
|
|
"mocha-lcov-reporter": "1.0.0",
|
|
"watch": "^0.17.1"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.0.0"
|
|
}
|
|
}
|