inliner/package.json
Remy Sharp aace364794 test: put jscs as part of tests
Because, yes, I'd like a consistent code style!
2015-07-28 13:40:09 +01:00

45 lines
1005 B
JSON

{
"name": "inliner",
"version": "1.0.1",
"description": "Utility to inline images, CSS and JavaScript for a web page - useful for mobile sites",
"homepage": "http://github.com/remy/inliner",
"main": "lib/index.js",
"scripts": {
"test": "jscs -v cli/*.js lib/*.js && node test/*.test.js --cov"
},
"keywords": [
"mobile",
"inline",
"production",
"build",
"minify"
],
"author": "Remy Sharp",
"dependencies": {
"cheerio": "^0.19.0",
"debug": "^2.2.0",
"es6-promise": "^2.3.0",
"lodash.assign": "^3.2.0",
"lodash.foreach": "^3.0.3",
"mime": "^1.3.4",
"request": "^2.60.0",
"then-fs": "^2.0.0",
"uglify-js": "^2.4.24",
"update-notifier": "^0.5.0"
},
"repository": {
"type": "git",
"url": "git://github.com/remy/inliner.git"
},
"license": "MIT",
"bin": {
"inliner": "cli/index.js"
},
"devDependencies": {
"jscs": "^2.0.0",
"st": "^0.5.5",
"tap-spec": "^4.0.2",
"tape": "^4.0.1"
}
}