Merge pull request #28146 from wizzup/add-jsonlint

nodePackages.jsonlint init : at 1.6.2
This commit is contained in:
Jörg Thalheim 2017-08-11 16:53:13 +01:00 committed by GitHub
commit 995ad59c70
2 changed files with 25 additions and 0 deletions

View file

@ -33,6 +33,7 @@
, "jshint"
, "json"
, "js-beautify"
, "jsonlint"
, "jsontool"
, "json-refs"
, "json-server"

View file

@ -26102,6 +26102,30 @@ in
};
production = true;
};
jsonlint = nodeEnv.buildNodePackage {
name = "jsonlint";
packageName = "jsonlint";
version = "1.6.2";
src = fetchurl {
url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.2.tgz";
sha1 = "5737045085f55eb455c68b1ff4ebc01bd50e8830";
};
dependencies = [
sources."nomnom-1.8.1"
sources."JSV-4.0.2"
sources."underscore-1.6.0"
sources."chalk-0.4.0"
sources."has-color-0.1.7"
sources."ansi-styles-1.0.0"
sources."strip-ansi-0.1.1"
];
buildInputs = globalBuildInputs;
meta = {
description = "Validate JSON";
homepage = http://zaach.github.com/jsonlint/;
};
production = true;
};
jsontool = nodeEnv.buildNodePackage {
name = "jsontool";
packageName = "jsontool";