timestring/package.json
2016-03-06 21:39:36 +00:00

38 lines
992 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.3.0",
"coveralls": "^2.11.2",
"cz-conventional-changelog": "^1.1.5",
"istanbul": "^0.4.1",
"jscs": "^2.8.0",
"jshint": "^2.9.1",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "1.2.0",
"watch": "^0.17.1"
},
"dependencies": {
"lodash": "^4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}