dustjs-linkedin
Advanced tools
Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "dustjs-linkedin", | ||
"version": "1.2.0", | ||
"author": "Aleksander Williams", | ||
"version": "1.2.1", | ||
"author": "asdas", | ||
"description": "Asynchronous templates for the browser and node.js ( LinkedIn fork )", | ||
"contributors": [ | ||
{ | ||
"name": "Jairo de Morais", | ||
"email": "jdemorais@linkedin.com" | ||
}, | ||
{ | ||
"name": "Veena Basavaraj", | ||
"email":"vbasavaraj@linkedin.com" | ||
}, | ||
{ | ||
"name": "Jimmy Chan", | ||
"email": "jchan@linkedin.com" | ||
}, | ||
{ | ||
"name": "Richard Ragan", | ||
"email": "rragan@ebay.com" | ||
} | ||
"Jairo de Morais <jdemorais@linkedin.com>", | ||
"Veena Basavaraj <vbasavaraj@linkedin.com>", | ||
"Jimmy Chan <jchan@linkedin.com>", | ||
"Richard Ragan <rragan@ebay.com>" | ||
], | ||
"scripts": { | ||
"test" : "node test/jasmine-test/server/specRunner.js", | ||
"test": "node test/jasmine-test/server/specRunner.js", | ||
"start": "node src/build.js" | ||
}, | ||
"bin": { "dustc": "./bin/dustc" }, | ||
"bin": { | ||
"dustc": "./bin/dustc" | ||
}, | ||
"main": "./lib/dust", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/linkedin/dustjs.git" | ||
"url": "git://github.com/linkedin/dustjs.git" | ||
}, | ||
"keywords": ["templates", "views"], | ||
"devDependencies": { | ||
"jasmine-node" : "1.0.x", | ||
"cover" : "0.2.x", | ||
"uglify-js" : "1.3.3" | ||
"keywords": [ | ||
"templates", | ||
"views" | ||
], | ||
"devDependencies": { | ||
"jasmine-node": "1.0.x", | ||
"cover": "0.2.x", | ||
"uglify-js": "1.3.3" | ||
}, | ||
@@ -43,3 +36,8 @@ "license": "MIT", | ||
"node": ">=0.5" | ||
}, | ||
"dependencies": {}, | ||
"optionalDependencies": {}, | ||
"engines": { | ||
"node": "*" | ||
} | ||
} |
@@ -966,3 +966,3 @@ var coreTests = [ | ||
context: { "val" : "A" }, | ||
expected: "AAA\n", | ||
expected: "AAA", | ||
message: "should test blocks with dynamic keys" | ||
@@ -980,3 +980,3 @@ }, | ||
context: { "val1" : "title", "val2" : "A" }, | ||
expected: "AAA\n", | ||
expected: "AAA", | ||
message: "should test blocks with more than one dynamic keys" | ||
@@ -994,3 +994,3 @@ }, | ||
context: { "val1" : "title", "val2" : "A", "obj" : { "name" : "B" } }, | ||
expected: "BBB\n", | ||
expected: "BBB", | ||
message: "should test blocks with dynamic key values as objects" | ||
@@ -1008,3 +1008,3 @@ }, | ||
context: { "val1" : "title", "val2" : "A", "obj" : { "name" : ["A", "B"] } }, | ||
expected: "AAA\n", | ||
expected: "AAA", | ||
message: "should test blocks with dynamic key values as arrays" | ||
@@ -1140,30 +1140,2 @@ } | ||
message: "This content {&partial/} should be parsed as buffer" | ||
}, | ||
{ | ||
name: "buffer does not ignore ws", | ||
source: "Hi {name}: you won a blue car", | ||
context: { "name" : "Jairo"}, | ||
expected: "Hi Jairo: you won a blue car", | ||
message: "Buffer should not ignore ws" | ||
}, | ||
{ | ||
name: "buffer: does not ignore line feed", | ||
source: "Hi {name}:\n you won a blue car", | ||
context: { "name" : "Jairo"}, | ||
expected: "Hi Jairo:\n you won a blue car", | ||
message: "Buffer should not ignore line feed" | ||
}, | ||
{ | ||
name: "buffer: does not ignore line feed and carriage", | ||
source: "Hi {name}:\r\n you won a blue car", | ||
context: { "name" : "Jairo"}, | ||
expected: "Hi Jairo:\r\n you won a blue car", | ||
message: "Buffer should not ignore line feed and carriage" | ||
}, | ||
{ | ||
name: "buffer: does not ignore carriage return", | ||
source: "Hi {name}:\r you won a blue car", | ||
context: { "name" : "Jairo"}, | ||
expected: "Hi Jairo:\r you won a blue car", | ||
message: "Buffer should not ignore carriage return" | ||
} | ||
@@ -1170,0 +1142,0 @@ ] |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
5
907450
66
20424