-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.72 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-config-property-sort-order-smacss",
"version": "10.0.0",
"description": "Stylelint config for Property Sort Ordering based on the SMACSS methodology",
"main": "index.js",
"files": [
"index.js",
"generate.js"
],
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"coverage": "coveralls < coverage/lcov.info",
"eslint": "eslint .",
"jest": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"prettier": "prettier --check '**/*.js'",
"test": "npm run eslint && npm run prettier && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cahamilton/stylelint-config-property-sort-order-smacss.git"
},
"keywords": [
"CSS",
"SMACSS",
"Scalable and Modular Architecture for CSS",
"CSS Property Sort Order",
"stylelint",
"stylelint-config",
"stylelint-config-property-sort-order-smacss"
],
"author": "Carl Hamilton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cahamilton/stylelint-config-property-sort-order-smacss/issues"
},
"homepage": "https://github.com/cahamilton/stylelint-config-property-sort-order-smacss#readme",
"dependencies": {
"css-property-sort-order-smacss": "~2.2.0",
"stylelint-order": "^6.0.4"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^29.0.1",
"jest-light-runner": "^0.6.0",
"prettier": "^3.0.0",
"proxyquire": "^2.0.0",
"stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"peerDependencies": {
"stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0"
}
}