-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.43 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
{
"name": "nord-highlightjs",
"version": "0.2.0",
"description": "An arctic, north-bluish clean and elegant highlight.js theme",
"author": {
"name": "Sven Greb",
"email": "[email protected]",
"url": "https://www.svengreb.de"
},
"homepage": "https://www.nordtheme.com/ports/highlightjs",
"repository": {
"type": "git",
"url": "git+https://github.com/nordtheme/highlightjs.git"
},
"bugs": {
"url": "https://github.com/nordtheme/highlightjs/issues"
},
"license": "MIT",
"main": "./dist/nord.css",
"files": [
"dist/nord.css"
],
"keywords": [
"nord",
"arctic",
"north",
"bluish",
"clean",
"elegant",
"highlight.js",
"theme"
],
"scripts": {
"clean": "del dist/",
"compile": "run-s clean compile:scss",
"compile:scss": "sass --color --future-deprecation import --no-source-map --stop-on-error --style compressed --verbose src/nord.scss:dist/nord.css",
"compile:scss:pretty": "sass --color --future-deprecation import --stop-on-error --style expanded --verbose src/nord.scss:dist/nord.css",
"format": "run-s format:*",
"format:js": "eslint --fix .",
"format:pretty": "prettier --ignore-unknown --no-editorconfig --write \"**\"",
"lint": "run-s lint:css lint:js lint:md lint:pretty",
"lint:ci": "run-s --continue-on-error lint:css lint:js lint:md 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/**/*.scss",
"lint:js": "eslint .",
"lint:md": "remark --no-stdout . .github/",
"lint:pretty": "prettier --check --ignore-unknown --no-editorconfig \"**\"",
"prepare:husky": "husky install",
"prepare": "run-s prepare:*",
"prepublish": "run-s clean compile"
},
"devDependencies": {
"@svengreb/eslint-config-base": ">=0.12.0 <=1.0.0",
"@svengreb/remark-preset-lint": ">=0.5.0 <1.0.0",
"del-cli": "5.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.1",
"nord": "0.2.1",
"npm-run-all": "4.1.5",
"postcss-scss": "4.0.6",
"prettier": "2.8.8",
"prettier-plugin-sh": "0.12.8",
"remark-cli": "11.0.0",
"sass": "1.62.1",
"stylelint-config-standard-scss": "9.0.0",
"stylelint-prettier": "3.0.0"
}
}