forked from uPortal-Project/uPortal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 939 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
36
37
{
"name": "uportal",
"private": true,
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-google": "^0.9.1",
"remark-cli": "^4.0.0",
"remark-preset-lint-consistent": "^2.0.1",
"remark-preset-lint-recommended": "^3.0.1",
"remark-validate-links": "^7.0.0",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0"
},
"scripts": {
"lint-js": "eslint . --ignore-path .gitignore --ignore-pattern *.min.js --ignore-pattern jstree.js --ignore-pattern less-1.6.2.js",
"lint-less": "stylelint --syntax less **/*.less !**/bootstrap/**/*.less",
"lint-md": "remark -f *.md docs/**"
},
"eslintConfig": {
"extends": "google",
"rules": {
"indent": [
"warn",
4
]
}
},
"remarkConfig": {
"plugins": [
"preset-lint-recommended",
"preset-lint-consistent"
]
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}