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

package.json - github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec1069b56ea2926fd1945196ffc1732fc237b291 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
  "name": "rfs",
  "version": "9.0.2",
  "main": "postcss.js",
  "description": "Powerful & easy-to-use responsive resizing engine.",
  "author": "Martijn Cuppens <martijn.cuppens@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/twbs/rfs.git"
  },
  "bugs": {
    "url": "https://github.com/twbs/rfs/issues"
  },
  "homepage": "https://github.com/twbs/rfs#readme",
  "files": [
    "lib/",
    "less.less",
    "postcss.js",
    "sass.sass",
    "scss.scss",
    "stylus.styl"
  ],
  "keywords": [
    "rfs",
    "fluid",
    "responsive",
    "font-size",
    "typography",
    "mixin",
    "scss",
    "sass",
    "less",
    "stylus",
    "postcss"
  ],
  "engines": {
    "node": ">=12"
  },
  "scripts": {
    "mocha": "mocha",
    "stylelint": "stylelint \"**/*.{less,scss}\" --cache --cache-location node_modules/.cache/stylelint",
    "xo": "xo",
    "lint": "npm-run-all --parallel xo stylelint",
    "test": "npm run lint && npm run mocha",
    "generate-test-results": "node-sass test/sass/ -o test/expected/ && prettier --write test/expected/*.css",
    "examples": "npm-run-all --parallel --continue-on-error gulp-examples node-examples",
    "gulp-examples": "npm-run-all --parallel --continue-on-error gulp-example-*",
    "gulp-example-less": "gulp --gulpfile=examples/less/gulpfile.js",
    "gulp-example-postcss": "gulp --gulpfile=examples/postcss/gulpfile.js",
    "gulp-example-scss": "gulp --gulpfile=examples/scss/gulpfile.js",
    "gulp-example-stylus": "gulp --gulpfile=examples/stylus/gulpfile.js",
    "node-examples": "npm-run-all --parallel --continue-on-error node-example-*",
    "node-example-less": "node examples/less/index.js",
    "node-example-postcss": "node examples/postcss/index.js",
    "node-example-scss": "node examples/scss/index.js",
    "node-example-stylus": "node examples/stylus/index.js"
  },
  "dependencies": {
    "postcss-value-parser": "^4.1.0"
  },
  "devDependencies": {
    "gulp": "^4.0.2",
    "gulp-less": "^5.0.0",
    "gulp-postcss": "^9.0.0",
    "gulp-sass": "^5.0.0",
    "gulp-stylus": "^2.7.0",
    "less": "^3.13.1",
    "less4": "npm:less@^4.1.1",
    "mocha": "^9.0.3",
    "node-sass": "^6.0.1",
    "npm-run-all": "^4.1.5",
    "postcss": "^8.3.6",
    "prettier": "^2.3.2",
    "sass": "^1.37.0",
    "stylelint": "^13.13.1",
    "stylelint-config-standard": "^22.0.0",
    "stylus": "^0.54.8",
    "xo": "^0.42.0"
  },
  "mocha": {
    "check-leaks": true,
    "throw-deprecation": true,
    "trace-deprecation": true,
    "trace-warnings": true,
    "use_strict": true
  },
  "xo": {
    "space": true,
    "rules": {
      "arrow-body-style": "off",
      "ava/no-import-test-files": "off",
      "comma-dangle": [
        "error",
        "never"
      ],
      "import/extensions": "off",
      "node/prefer-promises/fs": "off",
      "operator-linebreak": [
        "error",
        "after"
      ],
      "promise/prefer-await-to-then": "off",
      "unicorn/no-array-for-each": "off",
      "unicorn/prefer-module": "off",
      "unicorn/prevent-abbreviations": "off"
    }
  }
}