Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/Vimux/Binario.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 445ce108f7e86ce5ffddd6223359a055b4ef8a3c (plain)
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
{
  "name": "binario",
  "version": "1.0.0",
  "description": "Responsive card-based & code-light Hugo theme",
  "license": "MIT",
  "browserslist": [
    "> 0.25%",
    "last 2 version",
    "not dead",
    "IE 11",
    "iOS >= 9"
  ],
  "postcss": {
    "plugins": {
      "autoprefixer": {
        "cascade": false
      }
    }
  },
  "eslintConfig": {
    "extends": "airbnb-base",
    "env": {
      "browser": true
    },
    "rules": {
      "indent": [
        2,
        "tab"
      ],
      "comma-dangle": [
        "error",
        {
          "arrays": "always-multiline",
          "objects": "always-multiline",
          "imports": "always-multiline",
          "exports": "always-multiline",
          "functions": "ignore"
        }
      ],
      "no-tabs": 0
    }
  },
  "dependencies": {},
  "devDependencies": {
    "autoprefixer": "^10.4.8",
    "editorconfig-checker": "^4.0.2",
    "eslint": "^8.21.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.26.0",
    "postcss": "^8.4.16",
    "postcss-cli": "^10.0.0",
    "stylelint": "^14.10.0",
    "stylelint-order": "^5.0.0"
  },
  "scripts": {
    "lint:prefixes": "postcss static/css/*.css assets/css/*.css",
    "lint:css": "stylelint static/css/*.css assets/css/*.css",
    "lint:js": "eslint static/js/*.js",
    "lint:editorconfig": "editorconfig-checker",
    "lint": "npm run lint:css && npm run lint:js && npm run lint:editorconfig",
    "fix:prefixes": "postcss -r static/css/*.css assets/css/*.css",
    "fix:css": "stylelint static/css/*.css assets/css/*.css --fix",
    "fix:js": "eslint static/js/*.js --fix",
    "fix": "npm run fix:prefixes && npm run fix:css && npm run fix:js",
    "test": "npm run lint"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Vimux/Binario.git"
  },
  "bugs": {
    "url": "https://github.com/Vimux/Binario/issues"
  },
  "homepage": "https://github.com/Vimux/Binario"
}