-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "stylelint-csstree-validator",
"version": "3.0.0",
"description": "Stylelint plugin to validate CSS syntax",
"repository": "csstree/stylelint-validator",
"author": "Roman Dvornov <rdvornov@gmail.com>",
"license": "MIT",
"type": "module",
"main": "./cjs/index.cjs",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./cjs/index.cjs"
},
"./package.json": "./package.json"
},
"keywords": [
"stylelint-plugin",
"stylelint",
"csstree",
"css",
"validator",
"syntax"
],
"scripts": {
"test": "mocha test --reporter ${REPORTER:-progress}",
"test:cjs": "mocha cjs-test --reporter ${REPORTER:-progress}",
"lint": "eslint lib test",
"build": "npm run esm-to-cjs",
"build-and-test": "npm run esm-to-cjs-and-test",
"esm-to-cjs": "node scripts/esm-to-cjs",
"esm-to-cjs-and-test": "npm run esm-to-cjs && npm run test:cjs",
"coverage": "c8 --reporter=lcovonly npm test",
"prepublishOnly": "npm run lint && npm test && npm run build-and-test"
},
"engines": {
"node": "^14.13.0 || >=15.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"css-tree": "^2.3.1"
},
"peerDependencies": {
"stylelint": ">=7.0.0 <16.0.0"
},
"devDependencies": {
"c8": "^7.12.0",
"eslint": "^8.33.0",
"mocha": "^10.2.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.6",
"rollup": "^2.79.1",
"stylelint": "^15.7.0"
},
"files": [
"cjs",
"lib"
]
}