New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

compilers

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compilers - npm Package Compare versions

Comparing version
1.1.1
to
1.2.0
+4
test/fixtures/pug.js
module.exports = {
input: "html\n head\n body\n .greeting Hello World",
output: "<html><head></head><body><div class=\"greeting\">Hello World</div></body></html>"
};
+25
-25
{
"name": "compilers",
"version": "1.1.1",
"version": "1.2.0",
"description": "Universal preprocessor loader for templating and transpiling",

@@ -19,34 +19,34 @@ "main": "index.js",

"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"clean-css": "^3.4.10",
"autoprefixer": "^6.5.3",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"clean-css": "^3.4.21",
"codecov": "^1.0.1",
"coffee-script": "^1.10.0",
"coffee-script": "^1.11.1",
"dustjs-helpers": "^1.7.3",
"dustjs-linkedin": "^2.7.2",
"ejs": "^2.4.1",
"dustjs-linkedin": "^2.7.4",
"ejs": "^2.5.2",
"hamljs": "^0.6.2",
"handlebars": "^4.0.5",
"handlebars": "^4.0.6",
"hogan.js": "^3.0.2",
"html-minifier": "^1.2.0",
"istanbul": "^0.4.2",
"jade": "^1.11.0",
"less": "^2.6.0",
"livescript": "^1.4.0",
"lodash": "^4.5.1",
"mocha": "^2.4.5",
"mustache": "^2.2.1",
"node-sass": "^3.4.2",
"nunjucks": "^2.3.0",
"postcss": "^5.0.18",
"should": "^8.2.2",
"html-minifier": "^1.5.0",
"istanbul": "^0.4.5",
"less": "^2.7.1",
"livescript": "^1.5.0",
"lodash": "^4.17.2",
"mocha": "^2.5.3",
"mustache": "^2.3.0",
"node-sass": "^3.13.0",
"nunjucks": "^2.5.2",
"postcss": "^5.2.6",
"pug": "^2.0.0-beta6",
"should": "^8.4.0",
"stylus": "^0.53.0",
"sweet.js": "^0.7.7",
"sweet.js": "^0.7.8",
"swig": "^1.4.2",
"typescript": "^1.8.2",
"uglify-js": "^2.6.2",
"typescript": "^1.8.10",
"uglify-js": "^2.7.4",
"underscore": "^1.8.3"
}
}

@@ -158,3 +158,3 @@

"type" : "html",
"modules" : ["jade"],
"modules" : ["pug"],
"syntax" : "render(str, context)",

@@ -164,2 +164,10 @@ "options" : {}

{
"name" : "pug",
"ext" : "pug",
"type" : "html",
"modules" : ["pug"],
"syntax" : "render(str, context)",
"options" : {}
},
{
"name" : "sass",

@@ -166,0 +174,0 @@ "ext" : ["sass", "scss"],

module.exports = {
input: "a { display: flex; }",
output: "a { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; }"
output: "a { display: -webkit-box; display: -ms-flexbox; display: flex; }"
};