2011-03-14 15:41:25 +03:00
{
"name" : "inliner" ,
"description" : "Utility to inline images, CSS and JavaScript for a web page - useful for mobile sites" ,
"homepage" : "http://github.com/remy/inliner" ,
2015-07-26 18:44:49 +03:00
"main" : "lib/index.js" ,
2015-07-28 00:13:21 +03:00
"scripts" : {
2016-02-28 12:51:10 +03:00
"cover" : "tap test/*.test.js --cov --coverage-report=lcov" ,
"lint" : "jscs -v cli/*.js lib/*.js" ,
"test" : "npm run lint && tap test/*.test.js --cov -R spec" ,
2015-07-28 15:53:08 +03:00
"semantic-release" : "semantic-release pre && npm publish && semantic-release post"
2015-07-28 00:13:21 +03:00
} ,
2013-08-02 13:17:59 +04:00
"keywords" : [
"mobile" ,
"inline" ,
"production" ,
"build" ,
"minify"
] ,
2016-04-01 15:30:11 +03:00
"config" : {
"validate-commit-msg" : {
"helpMessage" : "\n-----------\n\nThere was a small validation problem with your commit message:\n\n> %s\n\nIt's not a huge problem, but a valid commit message will ensure\nwhether your commit triggers a release or not (and sometimes the\ncommit won't need to trigger a release). If you really need to, you\ncan skip the validation using `git commit --no-verify`.\n\nIf your commit is a fix, it might want to be:\n\n> fix: storage bug\n\nOr a feature:\n\n> feat: added new storage process\n\nThere's also `docs`, `test` and `chore` and a few more. To read\nhow the commit message should be formatted, please see this short\npost: https://git.io/vVCIR\n"
} ,
"ghooks" : {
"commit-msg" : "validate-commit-msg" ,
"pre-push" : "npm test"
}
} ,
2015-07-26 18:44:49 +03:00
"author" : "Remy Sharp" ,
2011-03-14 15:41:25 +03:00
"dependencies" : {
2016-04-19 13:10:19 +03:00
"ansi-escapes" : "^1.4.0" ,
"ansi-styles" : "^2.2.1" ,
"chalk" : "^1.1.3" ,
2015-08-24 00:38:18 +03:00
"charset" : "^1.0.0" ,
2015-07-26 18:44:49 +03:00
"cheerio" : "^0.19.0" ,
"debug" : "^2.2.0" ,
"es6-promise" : "^2.3.0" ,
2015-08-19 21:28:27 +03:00
"iconv-lite" : "^0.4.11" ,
2015-08-24 00:38:18 +03:00
"jschardet" : "^1.3.0" ,
2015-07-26 18:44:49 +03:00
"lodash.assign" : "^3.2.0" ,
2015-07-28 15:53:08 +03:00
"lodash.defaults" : "^3.1.2" ,
2015-07-26 18:44:49 +03:00
"lodash.foreach" : "^3.0.3" ,
2015-07-27 16:54:46 +03:00
"mime" : "^1.3.4" ,
2015-08-19 20:46:30 +03:00
"minimist" : "^1.1.3" ,
2016-04-19 13:10:19 +03:00
"request" : "^2.72.0" ,
2015-08-26 16:35:45 +03:00
"svgo" : "^0.5.6" ,
2015-07-26 18:44:49 +03:00
"then-fs" : "^2.0.0" ,
2016-04-19 13:10:19 +03:00
"uglify-js" : "^2.6.2" ,
2015-07-27 16:54:46 +03:00
"update-notifier" : "^0.5.0"
2011-03-14 15:41:25 +03:00
} ,
"repository" : {
"type" : "git" ,
2015-07-28 15:53:08 +03:00
"url" : "https://github.com/remy/inliner.git"
2011-03-14 15:41:25 +03:00
} ,
2015-07-26 18:44:49 +03:00
"license" : "MIT" ,
2011-03-14 15:41:25 +03:00
"bin" : {
2015-07-26 18:44:49 +03:00
"inliner" : "cli/index.js"
2015-07-27 15:22:12 +03:00
} ,
"devDependencies" : {
2016-04-01 15:30:11 +03:00
"ghooks" : "^1.1.1" ,
2015-07-28 15:40:09 +03:00
"jscs" : "^2.0.0" ,
2016-02-28 12:51:10 +03:00
"semantic-release" : "^4.0.0" ,
2015-07-28 12:47:43 +03:00
"st" : "^0.5.5" ,
2016-04-01 15:30:11 +03:00
"tap" : "^5.4.2" ,
"tap-only" : "0.0.5" ,
"validate-commit-msg" : "^2.5.0"
2011-03-14 15:41:25 +03:00
}
2011-05-16 15:02:36 +04:00
}