-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
78 lines (78 loc) · 2.32 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nord",
"version": "0.2.1",
"description": "An arctic, north-bluish color palette",
"author": {
"name": "Sven Greb",
"email": "[email protected]",
"url": "https://www.svengreb.de"
},
"homepage": "https://www.nordtheme.com",
"repository": {
"type": "git",
"url": "git+https://github.com/nordtheme/nord.git"
},
"bugs": {
"url": "https://github.com/nordtheme/nord/issues"
},
"license": "MIT",
"engines": {
"npm": ">=7.7"
},
"files": [
"src/nord.css",
"src/nord.less",
"src/nord.scss",
"src/nord.styl"
],
"keywords": [
"nord",
"arctic",
"north",
"bluish",
"clean",
"minimal",
"flat",
"ui",
"syntax"
],
"style": "src/nord.css",
"scripts": {
"format": "run-s format:*",
"format:js": "eslint --fix .",
"format:pretty": "prettier --ignore-unknown --no-editorconfig --write \"**\"",
"lint": "run-s lint:css lint:js lint:less lint:md lint:pretty lint:sass",
"lint:ci": "run-s --continue-on-error lint:css lint:js lint:less lint:md lint:sass lint:ci:pretty",
"lint:ci:pretty": "prettier --check --ignore-unknown --loglevel silent --no-editorconfig --no-error-on-unmatched-pattern \"**\"",
"lint:css": "stylelint --formatter verbose src/nord.css",
"lint:js": "eslint .",
"lint:less": "stylelint --formatter verbose ./src/nord.less",
"lint:md": "remark --no-stdout . .github/",
"lint:pretty": "prettier --check --ignore-unknown --no-editorconfig \"**\"",
"lint:sass": "stylelint --formatter verbose src/nord.scss",
"prepare": "run-s prepare:*",
"prepare:husky": "husky install",
"test": "run-s lint"
},
"devDependencies": {
"@svengreb/eslint-config-base": ">=0.12.0 <=1.0.0",
"@svengreb/remark-preset-lint": ">=0.5.0 <1.0.0",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"npm-run-all": "4.1.5",
"postcss-less": "6.0.0",
"postcss-scss": "4.0.6",
"prettier": "2.8.8",
"prettier-plugin-sh": "0.12.8",
"remark-cli": "11.0.0",
"stylelint": "15.6.0",
"stylelint-config-standard": "33.0.0",
"stylelint-config-standard-scss": "9.0.0",
"stylelint-less": "1.0.6",
"stylelint-prettier": "3.0.0"
}
}