-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
80 lines (80 loc) · 1.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "postcss-less",
"version": "6.0.0",
"description": "LESS parser for PostCSS",
"license": "MIT",
"repository": "shellscape/postcss-less",
"author": "Denys Kniazevych <[email protected]>",
"maintainer": "Andrew Powell <[email protected]>",
"homepage": "https://github.com/shellscape/postcss-less",
"bugs": "https://github.com/shellscape/postcss-less/issues",
"main": "lib/index.js",
"engines": {
"node": ">=12"
},
"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=high",
"test": "ava"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"ava": "^3.15.0",
"cheerio": "^1.0.0-rc.10",
"eslint-config-shellscape": "^2.0.2",
"eslint-plugin-filenames": "^1.2.0",
"is-absolute-url": "^3.0.0",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"postcss": "^8.3.5",
"postcss-parser-tests": "^8.3.5",
"pre-commit": "^1.2.2",
"url-join": "^4.0.0"
},
"peerDependencies": {
"postcss": "^8.3.5"
},
"keywords": [
"css",
"postcss",
"postcss-syntax",
"parser",
"less"
],
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"lib/client*.js",
"test/"
]
},
"pre-commit": "lint-staged"
}