1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "name": "postcss-less",
- "version": "4.0.1",
- "description": "LESS parser for PostCSS",
- "license": "MIT",
- "repository": "shellscape/postcss-less",
- "author": "Denys Kniazevych <webschik@gmail.com>",
- "maintainer": "Andrew Powell <andrew@shellscape.org>",
- "homepage": "https://github.com/shellscape/postcss-less",
- "bugs": "https://github.com/shellscape/postcss-less/issues",
- "main": "lib/index.js",
- "engines": {
- "node": ">=10"
- },
- "scripts": {
- "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
- "ci:lint": "npm run lint && npm run security",
- "ci:test": "npm run test",
- "commitlint": "commitlint",
- "commitmsg": "commitlint -e $GIT_PARAMS",
- "lint": "eslint --fix --cache lib test",
- "lint-staged": "lint-staged",
- "security": "npm audit --audit-level=moderate",
- "test": "ava"
- },
- "files": [
- "lib",
- "README.md",
- "LICENSE"
- ],
- "dependencies": {
- "postcss": "^8.1.2"
- },
- "devDependencies": {
- "@commitlint/cli": "^11.0.0",
- "@commitlint/config-conventional": "^11.0.0",
- "ava": "^3.13.0",
- "cheerio": "^1.0.0-rc.2",
- "eslint-config-shellscape": "^2.0.2",
- "eslint-plugin-filenames": "^1.2.0",
- "is-absolute-url": "^3.0.0",
- "less": "^3.8.1",
- "lint-staged": "^9.2.0",
- "node-fetch": "^2.6.1",
- "nyc": "^15.1.0",
- "postcss-parser-tests": "^8.3.1",
- "pre-commit": "^1.2.2",
- "standard-version": "^9.0.0",
- "url-join": "^4.0.0"
- },
- "keywords": [
- "css",
- "postcss",
- "postcss-syntax",
- "parser",
- "less"
- ],
- "ava": {
- "files": [
- "!**/fixtures/**",
- "!**/helpers/**"
- ]
- },
- "lint-staged": {
- "*.js": [
- "eslint --fix",
- "git add"
- ]
- },
- "nyc": {
- "include": [
- "lib/*.js"
- ],
- "exclude": [
- "lib/client*.js",
- "test/"
- ]
- },
- "pre-commit": "lint-staged"
- }
|