-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"name": "@ahdcreative/stylelint-config-ahd",
"version": "1.0.4",
"description": "Shareable stylelint config for CSS and SCSS, following AHD Creative code style.",
"main": "index.js",
"prettier": "@ahdcreative/prettier-config-ahd",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ahdcreative/stylelint-config-ahd.git"
},
"author": "AHDCreative",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahdcreative/stylelint-config-ahd/issues"
},
"homepage": "https://github.com/ahdcreative/stylelint-config-ahd#readme",
"peerDependencies": {
"stylelint": ">=14.1.0"
},
"dependencies": {
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-order": "^5.0.0"
},
"devDependencies": {
"@ahdcreative/eslint-config-ahd-base": "^1.0.8",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.26.0",
"jest": "28.1.3",
"stylelint": "14.11.0"
},
"scripts": {
"lint:js": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache ./ --max-warnings 0 --report-unused-disable-directives",
"lint:readme": "node write-rules.js --check",
"lint": "npm run lint:format && npm run lint:js && npm run lint:readme",
"preflight": "npm run format && npm run lint && npm run test",
"test": "jest",
"write-rules": "node write-rules.js",
"print-config": "stylelint --print-config .stylelintrc"
}
}