UNPKG

stylelint-tape

Version:
83 lines (82 loc) 2.17 kB
{ "name": "stylelint-tape", "version": "5.0.1", "description": "Test stylelint plugins", "author": "Jonathan Neal <jonathantneal@hotmail.com>", "license": "CC0-1.0", "repository": "csstools/stylelint-tape", "homepage": "https://github.com/csstools/stylelint-tape#readme", "bugs": "https://github.com/csstools/stylelint-tape/issues", "type": "module", "main": "index.mjs", "bin": { "stylelint-tape": "cli.mjs" }, "files": [ "cli.js", "cli.js.map", "index.js", "index.js.map", "index.mjs", "index.mjs.map" ], "scripts": { "build": "npm run build:api && npm run build:cli", "build:api": "cross-env NODE_ENV=api rollup --config --silent", "build:cli": "cross-env NODE_ENV=cli rollup --config --silent", "posttest:cli": "npm unlink stylelint-tape", "prepublishOnly": "npm run test:js && npm run test:node && npm run build:cli", "pretest:cli": "npm run build:cli && npm link", "pretest:node": "npm run build:api", "test": "npm run test:js && npm run test:node && npm run test:cli", "test:js": "eslint lib/*.mjs --cache --ignore-path .gitignore --quiet", "test:node": "node test/test.mjs", "test:cli": "stylelint-tape --cwd ./test/" }, "engines": { "node": ">=20.0.0" }, "dependencies": { "log-update": "^4" }, "devDependencies": { "@babel/core": "^7.18.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/preset-env": "^7.18.2", "babel-eslint": "^10.0.1", "cross-env": "^7.0.3", "eslint": "^8.18.0", "eslint-config-dev": "^3.1.0", "pre-commit": "^1.2.2", "rollup": "^2.75.7", "rollup-plugin-babel": "^4.3.2", "stylelint": "^16" }, "peerDependencies": { "stylelint": ">= 16" }, "eslintConfig": { "root": true, "extends": [ "eslint-config-dev" ], "ignorePatterns": "dist", "env": { "browser": true, "es6": true, "node": true }, "parserOptions": { "ecmaVersion": 2018, "impliedStrict": true, "sourceType": "module" } }, "keywords": [ "postcss", "css", "postcss-plugin", "test", "tool" ] }