-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
35 lines (35 loc) · 932 Bytes
/
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
{
"name": "linuxfr.org",
"version": "1.0.0",
"description": "LinuxFr.org",
"repository": {
"type": "git",
"url": "git+https://github.com/linuxfrorg/linuxfr.org.git"
},
"author": "Bruno Michel",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/linuxfrorg/linuxfr.org/issues"
},
"homepage": "https://github.com/linuxfrorg/linuxfr.org#readme",
"dependencies": {
"feather-icons": "4.21.0",
"normalize.css": "8.0.1"
},
"devDependencies": {
"prettier": "1.16.4",
"stylelint": "9.10.1",
"stylelint-config-recommended-scss": "3.2.0",
"stylelint-scss": "3.5.4"
},
"scripts": {
"lint": "stylelint app/*/*/{,common/,parts/,responsive/}*.scss",
"pretty": "prettier --write app/*/*/{,common/,parts/,responsive/}*.scss"
},
"stylelint": {
"extends": "stylelint-config-recommended-scss",
"rules": {
"no-descending-specificity": null
}
}
}