forked from nordtheme/nord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "nord",
"title": "Nord",
"version": "0.2.1",
"description": "An arctic, north-bluish color palette",
"author": {
"name": "Arctic Ice Studio",
"email": "[email protected]",
"url": "https://www.arcticicestudio.com"
},
"homepage": "https://www.nordtheme.com",
"repository": {
"type": "git",
"url": "git+https://github.com/arcticicestudio/nord.git"
},
"bugs": {
"url": "https://github.com/arcticicestudio/nord/issues"
},
"license": "MIT",
"keywords": [
"nord",
"arctic",
"north",
"bluish",
"clean",
"minimal",
"flat",
"ui",
"syntax"
],
"files": [
"src/nord.css",
"src/nord.less",
"src/nord.scss",
"src/nord.styl"
],
"style": "src/nord.css",
"scripts": {
"lint:css": "stylelint src/nord.css",
"lint:less": "stylelint src/nord.less",
"lint:sass": "stylelint src/nord.scss",
"lint": "npm-run-all --parallel lint:*",
"prepare": "npm run test",
"test": "npm run lint"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"stylelint": "9.10.1",
"stylelint-config-standard": "18.2.0"
}
}