-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.24 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
{
"name": "@isnotdefined/stylelint-plugin",
"description": "Yet another Stylelint plugin",
"version": "5.0.0",
"license": "MIT",
"type": "module",
"keywords":
[
"stylelint",
"stylelint-plugin",
"no-disable",
"no-obsolete",
"unit-step"
],
"author":
{
"name": "Henry Ruhs",
"url": "https://henryruhs.com"
},
"bugs":
{
"url": "https://github.com/isnotdefinedcom/stylelint-plugin/issues"
},
"repository":
{
"type": "git",
"url": "https://github.com/isnotdefinedcom/stylelint-plugin.git"
},
"dependencies":
{
"postcss": "^8",
"postcss-values-parser": "^6"
},
"peerDependencies":
{
"stylelint": "^16"
},
"devDependencies":
{
"@isnotdefined/eslint-config": "9.8.0",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "20.11.19",
"@types/postcss-plugins": "1.13.2",
"chai": "5.1.0",
"eslint": "8.56.0",
"mocha": "10.3.0",
"rollup": "4.12.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-ts": "3.4.5",
"stylelint": "16.2.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"scripts":
{
"build": "rollup --config rollup.config.js",
"lint": "eslint src tests --ext .ts",
"fix": "npm run lint -- --fix",
"test": "mocha"
},
"main": "index.js"
}