timestring/package.json

33 lines
848 B
JSON
Raw Normal View History

2012-12-24 14:11:35 +01:00
{
2014-07-17 22:57:10 +02:00
"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>",
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-01-15 11:00:12 +01:00
"scripts": {
2016-01-15 16:51:32 +01:00
"dev": "watch 'clear; npm test -s;' ./ -d",
2016-01-15 11:00:12 +01:00
"sa": "jshint index.js && jscs index.js",
"test": "mocha test.js"
},
"main": "index.js",
2016-01-15 21:05:30 +01:00
"version": "3.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",
"istanbul": "^0.4.1",
2016-01-15 11:00:12 +01:00
"jscs": "^2.8.0",
"jshint": "^2.9.1",
2015-04-30 12:37:57 +02:00
"mocha": "^2.2.4",
"mocha-lcov-reporter": "1.1.0",
2016-01-15 16:51:32 +01:00
"watch": "^0.17.1"
2016-01-15 21:05:30 +01:00
},
"dependencies": {
"lodash": "^4.0.0"
2014-07-17 22:57:10 +02:00
}
2012-12-24 14:11:35 +01:00
}