UNPKG

1.79 kBJSONView Raw
1{
2 "name": "postcss-less",
3 "version": "3.0.1",
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:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
19 "ci:test": "npm run test",
20 "commitlint": "commitlint",
21 "commitmsg": "commitlint -e $GIT_PARAMS",
22 "lint": "eslint --fix --cache lib test",
23 "lint-staged": "lint-staged",
24 "security": "npm audit",
25 "test": "ava"
26 },
27 "files": [
28 "lib",
29 "README.md",
30 "LICENSE"
31 ],
32 "dependencies": {
33 "postcss": "^7.0.2"
34 },
35 "devDependencies": {
36 "@commitlint/cli": "^7.1.2",
37 "@commitlint/config-conventional": "^7.1.2",
38 "ava": "^1.0.0-beta.8",
39 "cheerio": "^1.0.0-rc.2",
40 "eslint": "^5.6.0",
41 "eslint-config-shellscape": "^2.0.2",
42 "eslint-plugin-filenames": "^1.2.0",
43 "is-absolute-url": "^2.1.0",
44 "less": "^3.8.1",
45 "lint-staged": "^7.2.2",
46 "node-fetch": "^2.2.0",
47 "nyc": "^13.0.1",
48 "postcss-parser-tests": "^6.3.0",
49 "pre-commit": "^1.2.2",
50 "standard-version": "^4.4.0",
51 "url-join": "^4.0.0"
52 },
53 "keywords": [
54 "css",
55 "postcss",
56 "postcss-syntax",
57 "parser",
58 "less"
59 ],
60 "pre-commit": "lint-staged",
61 "lint-staged": {
62 "*.js": [
63 "eslint --fix",
64 "git add"
65 ]
66 }
67}