-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 KB
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
{
"name": "Opale",
"description": "A Redmine theme written in SCSS",
"keywords": [
"redmine",
"theme",
"sass",
"scss"
],
"author": "Guillaume AGNIERAY",
"repository": {
"type": "git",
"url": "git@github.com:gagnieray/Opale.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/gagnieray/opale/issues"
},
"homepage": "https://github.com/gagnieray/opale",
"scripts": {
"prepare": "husky",
"build": "grunt",
"watch": "grunt watch",
"lint:sass": "stylelint src/sass/**/*.scss",
"lint": "npm run -S lint:sass"
},
"devDependencies": {
"@lodder/grunt-postcss": "^3.1.1",
"@tabler/icons-webfont": "^3.36.1",
"autoprefixer": "^10.4.23",
"grunt": "^1.6.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^4.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"sass": "^1.97.3",
"stylelint": "^16.26.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard-scss": "^16.0.0"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not dead"
],
"lint-staged": {
"src/**/*.scss": []
}
}