-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 919 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 919 Bytes
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
{
"name": "csslint-mod",
"version": "1.0.7",
"description": "A CSSLint fork supporting modern CSS, primarily used in the Stylus extension",
"author": "Stylus Team",
"license": "MIT",
"repository": "openstyles/csslint-mod",
"homepage": "https://github.com/openstyles/csslint-mod#readme",
"keywords": [
"CSS",
"linter"
],
"files": [
"dist",
"src/lib"
],
"main": "dist/csslint.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint \"**/*.js\" --cache",
"test": "pnpm lint && node --import=extensionless/register test/test.js",
"preversion": "pnpm test",
"bump": "pnpm version patch",
"bump2": "pnpm version minor"
},
"devDependencies": {
"chalk": "^5.4.1",
"eslint": "^10.2.0",
"extensionless": "^1.9.9",
"fs-extra": "^11.2.0",
"globals": "^15.14.0",
"rollup": "^4.29.1"
}
}