Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

autoprefixer

Package Overview
Dependencies
Maintainers
1
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autoprefixer - npm Package Compare versions

Comparing version 0.8.20131017 to 0.8.20131020

14

data/browsers.js

@@ -6,4 +6,4 @@ (function() {

minor: true,
versions: [4.2, 4.1, 4, 3, 2.3, 2.2, 2.1],
popularity: [0.486015, 2.09273, 1.24077, 0.00571783, 1.75537, 0.137228, 0.0571783]
versions: [4.3, 4.2, 4.1, 4, 3, 2.3, 2.2, 2.1],
popularity: [0.2430075, 0.2430075, 2.09273, 1.24077, 0.00571783, 1.75537, 0.137228, 0.0571783]
},

@@ -30,9 +30,8 @@ bb: {

prefix: "-ms-",
future: [11],
versions: [10, 9, 8, 7, 6, 5.5],
popularity: [10.1483, 4.94898, 7.96177, 0.542468, 0.19195, 0.009298]
versions: [11, 10, 9, 8, 7, 6, 5.5],
popularity: [0.025037, 10.1483, 4.94898, 7.96177, 0.542468, 0.19195, 0.009298]
},
ios: {
prefix: "-webkit-",
versions: [7, 6, 6.1, 5, 5.1, 4.2, 4.3, 4, 4.1, 3.2],
versions: [7, 6.1, 6, 5.1, 5, 4.3, 4.2, 4.1, 4, 3.2],
popularity: [3.62344, 1.60919, 1.60919, 0.2246235, 0.2246235, 0.0405059, 0.0405059, 0.0073647, 0.0073647, 0.00736471]

@@ -42,3 +41,4 @@ },

prefix: "-o-",
versions: [17, 16, 15, 12.1, 12, 11.6, 11.5, 11.1, 11, 10.6, 10.5, 10, 10.1, 9.5, 9.6],
future: [18],
versions: [17, 16, 15, 12.1, 12, 11.6, 11.5, 11.1, 11, 10.6, 10.5, 10.1, 10, 9.6, 9.5],
popularity: [0.008219, 0.172599, 0.041095, 0.517797, 0.049314, 0.032876, 0.016438, 0.008219, 0.008219, 0.008219, 0.008392, 0.0123285, 0.0123285, 0.0041095, 0.0041095]

@@ -45,0 +45,0 @@ },

{
"name": "autoprefixer",
"version": "0.8.20131017",
"version": "0.8.20131020",
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",

@@ -14,11 +14,11 @@ "keywords": ["css", "prefix", "rework"],

"css-parse": "~> 1.6.0",
"css-stringify": "~> 1.3.1"
"css-stringify": "~> 1.3.2"
},
"devDependencies": {
"coffee-script": "1.6.3",
"component": "0.17.6",
"component": "0.18.0",
"fs-extra": "0.8.0",
"should": "2.0.1",
"stylus": "0.38.0",
"rework": "0.18.2",
"rework": "0.18.3",
"mocha": "1.13.0",

@@ -25,0 +25,0 @@ "glob": "3.2.6",

@@ -18,3 +18,6 @@ (function() {

interval = array[_i];
splited = interval.split('-');
splited = interval.split('-').map(function(i) {
return parseFloat(i);
});
splited = splited.sort().reverse();
sub = (function() {

@@ -50,3 +53,3 @@ var _j, _len1, _results;

result.versions = versions.map(function(i) {
return parseFloat(i[0]);
return i[0];
});

@@ -53,0 +56,0 @@ result.popularity = versions.map(function(i) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc