1 | {
|
---|
2 | "name": "postcss-custom-media",
|
---|
3 | "version": "7.0.8",
|
---|
4 | "description": "Use Custom Media Queries in CSS",
|
---|
5 | "author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
---|
6 | "contributors": [
|
---|
7 | "Maxime Thirouin"
|
---|
8 | ],
|
---|
9 | "license": "MIT",
|
---|
10 | "repository": "postcss/postcss-custom-media",
|
---|
11 | "homepage": "https://github.com/postcss/postcss-custom-media#readme",
|
---|
12 | "bugs": "https://github.com/postcss/postcss-custom-media/issues",
|
---|
13 | "main": "index.cjs.js",
|
---|
14 | "module": "index.es.mjs",
|
---|
15 | "files": [
|
---|
16 | "index.cjs.js",
|
---|
17 | "index.es.mjs"
|
---|
18 | ],
|
---|
19 | "scripts": {
|
---|
20 | "prepublishOnly": "npm test",
|
---|
21 | "pretest": "rollup -c .rollup.js --silent",
|
---|
22 | "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
|
---|
23 | "test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
|
---|
24 | "test:tape": "postcss-tape"
|
---|
25 | },
|
---|
26 | "engines": {
|
---|
27 | "node": ">=6.0.0"
|
---|
28 | },
|
---|
29 | "dependencies": {
|
---|
30 | "postcss": "^7.0.14"
|
---|
31 | },
|
---|
32 | "devDependencies": {
|
---|
33 | "@babel/core": "^7.4.0",
|
---|
34 | "@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
---|
35 | "@babel/preset-env": "^7.4.2",
|
---|
36 | "babel-eslint": "^10.0.1",
|
---|
37 | "eslint": "^5.16.0",
|
---|
38 | "eslint-config-dev": "^2.0.0",
|
---|
39 | "postcss-tape": "^4.0.0",
|
---|
40 | "pre-commit": "^1.2.2",
|
---|
41 | "rollup": "^1.7.4",
|
---|
42 | "rollup-plugin-babel": "^4.3.2"
|
---|
43 | },
|
---|
44 | "eslintConfig": {
|
---|
45 | "extends": "dev",
|
---|
46 | "parser": "babel-eslint"
|
---|
47 | },
|
---|
48 | "keywords": [
|
---|
49 | "postcss",
|
---|
50 | "css",
|
---|
51 | "postcss-plugin",
|
---|
52 | "custom",
|
---|
53 | "media",
|
---|
54 | "query",
|
---|
55 | "queries",
|
---|
56 | "w3c",
|
---|
57 | "csswg",
|
---|
58 | "atrule",
|
---|
59 | "at-rule",
|
---|
60 | "specification"
|
---|
61 | ]
|
---|
62 | }
|
---|