-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "stylelint-config-mercari",
"version": "0.14.0",
"description": "The shareable config for stylelint by mercari.",
"main": "index.js",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "xo test/**/*.js && nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercari/stylelint-config-mercari.git"
},
"keywords": [
"stylelint",
"stylelint-config"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mercari/stylelint-config-mercari/issues"
},
"homepage": "https://github.com/mercari/stylelint-config-mercari#readme",
"ava": {
"files": [
"test/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": true
},
"xo": {
"space": true
},
"files": [
"index.js"
],
"dependencies": {
"stylelint-config-property-sort-order-smacss": "^8.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"conventional-changelog-cli": "^2.2.2",
"nyc": "^15.0.0",
"stylelint": "^14.2.0",
"xo": "^0.47.0"
},
"peerDependencies": {
"stylelint": "^14.2.0"
}
}