[6a3a178] | 1 | {
|
---|
| 2 | "name": "postcss-custom-properties",
|
---|
| 3 | "version": "8.0.11",
|
---|
| 4 | "description": "Use Custom Properties Queries in CSS",
|
---|
| 5 | "author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
---|
| 6 | "contributors": [
|
---|
| 7 | "Maxime Thirouin"
|
---|
| 8 | ],
|
---|
| 9 | "license": "MIT",
|
---|
| 10 | "repository": "postcss/postcss-custom-properties",
|
---|
| 11 | "homepage": "https://github.com/postcss/postcss-custom-properties#readme",
|
---|
| 12 | "bugs": "https://github.com/postcss/postcss-custom-properties/issues",
|
---|
| 13 | "main": "index.cjs.js",
|
---|
| 14 | "module": "index.esm.mjs",
|
---|
| 15 | "files": [
|
---|
| 16 | "index.cjs.js",
|
---|
| 17 | "index.cjs.js.map",
|
---|
| 18 | "index.esm.mjs",
|
---|
| 19 | "index.esm.mjs.map"
|
---|
| 20 | ],
|
---|
| 21 | "scripts": {
|
---|
| 22 | "prepublishOnly": "npm test",
|
---|
| 23 | "pretest:tape": "rollup -c .rollup.js --silent",
|
---|
| 24 | "test": "npm run test:js && npm run test:tape",
|
---|
| 25 | "test:js": "eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet",
|
---|
| 26 | "test:tape": "postcss-tape"
|
---|
| 27 | },
|
---|
| 28 | "engines": {
|
---|
| 29 | "node": ">=6.0.0"
|
---|
| 30 | },
|
---|
| 31 | "dependencies": {
|
---|
| 32 | "postcss": "^7.0.17",
|
---|
| 33 | "postcss-values-parser": "^2.0.1"
|
---|
| 34 | },
|
---|
| 35 | "devDependencies": {
|
---|
| 36 | "@babel/core": "^7.4.5",
|
---|
| 37 | "@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
---|
| 38 | "@babel/preset-env": "^7.4.5",
|
---|
| 39 | "babel-eslint": "^10.0.2",
|
---|
| 40 | "eslint": "^5.16.0",
|
---|
| 41 | "postcss-tape": "^4.0.0",
|
---|
| 42 | "pre-commit": "^1.2.2",
|
---|
| 43 | "rollup": "^1.15.6",
|
---|
| 44 | "rollup-plugin-babel": "^4.3.2"
|
---|
| 45 | },
|
---|
| 46 | "eslintConfig": {
|
---|
| 47 | "env": {
|
---|
| 48 | "browser": true,
|
---|
| 49 | "es6": true,
|
---|
| 50 | "node": true
|
---|
| 51 | },
|
---|
| 52 | "extends": "eslint:recommended",
|
---|
| 53 | "parser": "babel-eslint",
|
---|
| 54 | "parserOptions": {
|
---|
| 55 | "ecmaVersion": 2018,
|
---|
| 56 | "impliedStrict": true,
|
---|
| 57 | "sourceType": "module"
|
---|
| 58 | },
|
---|
| 59 | "root": true
|
---|
| 60 | },
|
---|
| 61 | "keywords": [
|
---|
| 62 | "postcss",
|
---|
| 63 | "css",
|
---|
| 64 | "postcss-plugin",
|
---|
| 65 | "custom",
|
---|
| 66 | "properties",
|
---|
| 67 | "declarations",
|
---|
| 68 | "variables",
|
---|
| 69 | "vars",
|
---|
| 70 | "w3c",
|
---|
| 71 | "csswg",
|
---|
| 72 | "specification"
|
---|
| 73 | ]
|
---|
| 74 | }
|
---|