fast-json-patch
Advanced tools
Comparing version 1.1.5 to 1.1.6
/*! | ||
* https://github.com/Starcounter-Jack/JSON-Patch | ||
* json-patch-duplex.js version: 1.1.5 | ||
* json-patch-duplex.js version: 1.1.6 | ||
* (c) 2013 Joachim Wester | ||
@@ -5,0 +5,0 @@ * MIT license |
/*! | ||
* https://github.com/Starcounter-Jack/JSON-Patch | ||
* json-patch-duplex.js version: 1.1.5 | ||
* json-patch-duplex.js version: 1.1.6 | ||
* (c) 2013 Joachim Wester | ||
@@ -5,0 +5,0 @@ * MIT license |
{ | ||
"name": "fast-json-patch", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "Fast implementation of JSON-Patch (RFC-6902) with duplex (observe changes) capabilities", | ||
@@ -25,4 +25,4 @@ "homepage": "https://github.com/Starcounter-Jack/JSON-Patch", | ||
"license": "MIT", | ||
"main": "./src/json-patch-duplex.js", | ||
"typings": "./src/json-patch-duplex.ts", | ||
"main": "src/json-patch-duplex.js", | ||
"typings": "src/json-patch-duplex.d.ts", | ||
"engines": { | ||
@@ -40,2 +40,3 @@ "node": ">= 0.4.0" | ||
"jsonfile": "^2.3.1", | ||
"typescript": "~2.0.0", | ||
"underscore": "^1.8.3" | ||
@@ -46,2 +47,3 @@ }, | ||
"tsc-watch": "tsc -w", | ||
"uglify": "grunt uglify", | ||
"test": "npm run test-core && npm run test-duplex", | ||
@@ -48,0 +50,0 @@ "test-duplex": "jasmine DUPLEX=yes JASMINE_CONFIG_PATH=test/jasmine.json", |
/*! | ||
* https://github.com/Starcounter-Jack/JSON-Patch | ||
* json-patch-duplex.js version: 1.1.5 | ||
* json-patch-duplex.js version: 1.1.6 | ||
* (c) 2013 Joachim Wester | ||
@@ -344,3 +344,3 @@ * MIT license | ||
function _generate(mirror, obj, patches, path) { | ||
if (typeof obj.toJSON === "function"){ | ||
if (typeof obj.toJSON === "function") { | ||
obj = obj.toJSON(); | ||
@@ -347,0 +347,0 @@ } |
/*! | ||
* https://github.com/Starcounter-Jack/JSON-Patch | ||
* json-patch-duplex.js version: 1.1.5 | ||
* json-patch-duplex.js version: 1.1.6 | ||
* (c) 2013 Joachim Wester | ||
@@ -5,0 +5,0 @@ * MIT license |
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"module": "commonjs", | ||
"noEmitHelpers": true, | ||
"removeComments": false, | ||
/* emitting `use strict` made PuppetJS break */ | ||
"allowSyntheticDefaultImports": true, | ||
"noImplicitUseStrict": true | ||
}, | ||
"filesGlob": [ | ||
"./src/*.ts" | ||
]} | ||
"compilerOptions": { | ||
"target": "es5", | ||
"module": "commonjs", | ||
"noEmitHelpers": true, | ||
"declaration": true, | ||
"removeComments": false, | ||
/* emitting `use strict` made PuppetJS break */ | ||
"allowSyntheticDefaultImports": true, | ||
"noImplicitUseStrict": true | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
] | ||
} |
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
72052
10
9
1066