UNPKG

1.84 kBJSONView Raw
1{
2 "name": "postcss-less",
3 "version": "5.0.0",
4 "description": "LESS parser for PostCSS",
5 "license": "MIT",
6 "repository": "shellscape/postcss-less",
7 "author": "Denys Kniazevych <webschik@gmail.com>",
8 "maintainer": "Andrew Powell <andrew@shellscape.org>",
9 "homepage": "https://github.com/shellscape/postcss-less",
10 "bugs": "https://github.com/shellscape/postcss-less/issues",
11 "main": "lib/index.js",
12 "engines": {
13 "node": ">=12"
14 },
15 "scripts": {
16 "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
17 "ci:lint": "npm run lint && npm run security",
18 "ci:test": "npm run test",
19 "commitlint": "commitlint",
20 "commitmsg": "commitlint -e $GIT_PARAMS",
21 "lint": "eslint --fix --cache lib test",
22 "lint-staged": "lint-staged",
23 "security": "npm audit --audit-level=high",
24 "test": "ava"
25 },
26 "files": [
27 "lib",
28 "README.md",
29 "LICENSE"
30 ],
31 "dependencies": {},
32 "devDependencies": {
33 "@commitlint/cli": "^12.1.4",
34 "@commitlint/config-conventional": "^12.1.4",
35 "ava": "^3.15.0",
36 "cheerio": "^1.0.0-rc.10",
37 "eslint-config-shellscape": "^2.0.2",
38 "eslint-plugin-filenames": "^1.2.0",
39 "is-absolute-url": "^3.0.0",
40 "less": "^4.1.1",
41 "lint-staged": "^11.0.0",
42 "node-fetch": "^2.6.1",
43 "nyc": "^15.1.0",
44 "postcss": "^8.3.5",
45 "postcss-parser-tests": "^8.3.5",
46 "pre-commit": "^1.2.2",
47 "url-join": "^4.0.0"
48 },
49 "keywords": [
50 "css",
51 "postcss",
52 "postcss-syntax",
53 "parser",
54 "less"
55 ],
56 "ava": {
57 "files": [
58 "!**/fixtures/**",
59 "!**/helpers/**"
60 ]
61 },
62 "lint-staged": {
63 "*.js": [
64 "eslint --fix"
65 ]
66 },
67 "nyc": {
68 "include": [
69 "lib/*.js"
70 ],
71 "exclude": [
72 "lib/client*.js",
73 "test/"
74 ]
75 },
76 "pre-commit": "lint-staged"
77}