-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "stylelint-magic-numbers",
"version": "2.0.1",
"description": "Plugin for stylelint with magic number rule",
"main": "src/index.js",
"engines": {
"node": ">=20.0.0"
},
"files": [
"src/**/*.js",
"!src/**/README.md",
"!**/__tests__/**"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"release": "np",
"jest": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"test": "npm run jest -- --coverage",
"watch": "npm run jest -- --watch",
"test-rule": "npm run jest",
"test-util": "npm run jest",
"generate-contributors-list": "githubcontrib --owner stylelint-scss --repo stylelint-scss --cols 6 --sortOrder desc --filter greenkeeper[bot],dependabot[bot] --showlogin true --imagesize 80 --format html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuStTheDev/stylelint-magic-numbers.git"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"magic-numbers",
"magic-colors"
],
"author": "Julian Strecker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JuStTheDev/stylelint-magic-numbers/issues"
},
"homepage": "https://github.com/JuStTheDev/stylelint-magic-numbers#readme",
"peerDependencies": {
"stylelint": "^16.0.2"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"babel-eslint": "^10.1.0",
"babel-preset-jest": "^29.6.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-stylelint": "^21.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-preset-stylelint": "^7.0.0",
"stylelint": ">=16.2.1"
}
}