UNPKG

1.2 kBJSONView Raw
1{
2 "name": "postcss-at2x",
3 "version": "2.0.2",
4 "description": "Adds at-2x keyword to background and background-image declarations to add retina support for images.",
5 "keywords": [
6 "postcss",
7 "css",
8 "postcssplugin",
9 "at2x",
10 "retina"
11 ],
12 "author": "Simon Smith <me@simonsmith.io>",
13 "license": "MIT",
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/simonsmith/postcss-at2x.git"
17 },
18 "main": "build/index.js",
19 "dependencies": {
20 "postcss": "^5.0.4",
21 "string.prototype.includes": "^1.0.0"
22 },
23 "devDependencies": {
24 "babel-cli": "^6.3.17",
25 "babel-plugin-add-module-exports": "^0.2.1",
26 "babel-preset-es2015": "^6.3.13",
27 "babel-register": "^6.3.13",
28 "chai": "^3.5.0",
29 "eslint": "^3.14.1",
30 "eslint-config-airbnb": "^14.0.0",
31 "eslint-plugin-import": "^2.2.0",
32 "eslint-plugin-jsx-a11y": "^3.0.2",
33 "eslint-plugin-react": "^6.9.0",
34 "jshint-stylish": "^2.2.1",
35 "mocha": "^3.2.0"
36 },
37 "scripts": {
38 "lint": "eslint lib/index.js test/test.js",
39 "build": "babel lib --out-dir build",
40 "test": "mocha --compilers js:babel-register && npm run lint",
41 "prepublish": "npm run build"
42 }
43}