-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.42 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
79
80
81
82
{
"name": "nord-atom-syntax",
"version": "0.10.0",
"description": "An arctic, north-bluish clean and elegant Atom syntax theme",
"author": {
"name": "Sven Greb",
"email": "development@svengreb.de",
"url": "https://www.svengreb.de"
},
"homepage": "https://www.nordtheme.com/ports/atom-syntax",
"repository": {
"type": "git",
"url": "git+https://github.com/nordtheme/atom-syntax.git"
},
"bugs": {
"url": "https://github.com/nordtheme/atom-syntax/issues"
},
"license": "MIT",
"main": "./lib/main",
"engines": {
"atom": ">=1.13.0 <2.0.0",
"npm": ">=7.7"
},
"keywords": [
"arctic",
"north",
"bluish",
"clean",
"elegant",
"minimal",
"syntax"
],
"theme": "syntax",
"configSchema": {
"accessibility": {
"type": "object",
"properties": {
"commentContrast": {
"title": "Custom Comment Contrast",
"description": "Increases the contrast for comments by percentage.",
"type": "integer",
"minimum": 0,
"maximum": 20,
"default": 0
}
}
}
},
"scripts": {
"format": "run-p format:*",
"format:js": "eslint --fix .",
"format:pretty": "prettier --ignore-unknown --no-editorconfig --write \"**\"",
"lint": "run-s lint:js lint:less lint:md lint:pretty",
"lint:ci": "run-s --continue-on-error lint:js lint:less lint:md lint:ci:pretty",
"lint:ci:pretty": "prettier --check --ignore-unknown --loglevel silent --no-editorconfig --no-error-on-unmatched-pattern \"**\"",
"lint:js": "eslint .",
"lint:less": "stylelint --formatter verbose *.less styles/",
"lint:md": "remark --no-stdout . .github/",
"lint:pretty": "prettier --check --ignore-unknown --no-editorconfig \"**\"",
"prepare:husky": "husky install",
"prepare": "run-s prepare:*"
},
"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",
"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-less": "1.0.6",
"stylelint-prettier": "3.0.0"
}
}