relaxed-json
Advanced tools
Comparing version 0.2.7 to 0.2.8
@@ -48,2 +48,4 @@ #!/usr/bin/env node | ||
var ret = cli(process.argv); | ||
/* eslint-disable no-process-exit */ | ||
process.exit(ret); | ||
/* eslint-enable no-process-exit */ |
{ | ||
"name": "relaxed-json", | ||
"description": "Relaxed JSON is strict superset JSON, relaxing strictness of valilla JSON", | ||
"version": "0.2.7", | ||
"version": "0.2.8", | ||
"homepage": "https://github.com/phadej/relaxed-json", | ||
@@ -35,9 +35,10 @@ "author": { | ||
"devDependencies": { | ||
"jsverify": "~0.3.3", | ||
"underscore": "~1.6.0", | ||
"mocha": "~1.21.4", | ||
"eslint": "^0.9.1", | ||
"istanbul": "~0.3.0", | ||
"jscs": "~1.7.3", | ||
"jshint": "~2.5.1", | ||
"istanbul": "~0.3.0", | ||
"jsverify": "~0.4.0-beta.2", | ||
"mocha": "~2.0.1", | ||
"uglify-js": "~2.4.13", | ||
"jscs": "~1.5.9" | ||
"underscore": "~1.7.0" | ||
}, | ||
@@ -51,5 +52,5 @@ "keywords": [ | ||
"dependencies": { | ||
"commander": "~2.3.0", | ||
"commander": "~2.5.0", | ||
"chalk": "~0.5.1" | ||
} | ||
} |
@@ -52,2 +52,3 @@ # Relaxed JSON | ||
"description": "Relaxed JSON is strict superset JSON, relaxing strictness of valilla JSON", | ||
``` | ||
@@ -58,2 +59,3 @@ <sup>†</sup>`rjson` is similar to `python -mjson.tool`. | ||
- 0.2.8 Dev dependencies update | ||
- 0.2.7 `rjson` executable | ||
@@ -60,0 +62,0 @@ - also depedencies update |
@@ -133,3 +133,3 @@ /* | ||
return { | ||
type : "number", | ||
type: "number", | ||
match: m[0], | ||
@@ -342,3 +342,4 @@ value: parseFloat(m[0]), | ||
var token = skipPunctuation(tokens, state, [":"]); | ||
var key, value; | ||
var key; | ||
var value; | ||
@@ -352,3 +353,3 @@ if (token.type !== "string") { | ||
value: "null", | ||
line: token.line, | ||
line: token.line, | ||
}; | ||
@@ -355,0 +356,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24668
7
533
83
8
+ Addedcommander@2.5.1(transitive)
- Removedcommander@2.3.0(transitive)
Updatedcommander@~2.5.0