UNPKG

1.71 kBJSONView Raw
1{
2 "name": "postcss-less",
3 "version": "3.1.3",
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": ">=6.14.4"
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",
24 "test": "ava"
25 },
26 "files": [
27 "lib",
28 "README.md",
29 "LICENSE"
30 ],
31 "dependencies": {
32 "postcss": "^7.0.14"
33 },
34 "devDependencies": {
35 "@commitlint/cli": "^7.1.2",
36 "@commitlint/config-conventional": "^7.1.2",
37 "ava": "^1.0.0-beta.8",
38 "cheerio": "^1.0.0-rc.2",
39 "eslint": "^5.6.0",
40 "eslint-config-shellscape": "^2.0.2",
41 "eslint-plugin-filenames": "^1.2.0",
42 "is-absolute-url": "^2.1.0",
43 "less": "^3.8.1",
44 "lint-staged": "^8.1.0",
45 "node-fetch": "^2.2.0",
46 "nyc": "^13.3.0",
47 "postcss-parser-tests": "^6.3.1",
48 "pre-commit": "^1.2.2",
49 "standard-version": "^4.4.0",
50 "url-join": "^4.0.0"
51 },
52 "keywords": [
53 "css",
54 "postcss",
55 "postcss-syntax",
56 "parser",
57 "less"
58 ],
59 "pre-commit": "lint-staged",
60 "lint-staged": {
61 "*.js": [
62 "eslint --fix",
63 "git add"
64 ]
65 }
66}