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: 3c54510dde3655b8e2c06ce24e45d6e1d1022125 (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
{
  "name": "rfs",
  "version": "8.0.2",
  "main": "postcss.js",
  "description": "Powerful & easy-to-use responsive font sizing 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": [
    "less.less",
    "postcss.js",
    "sass.sass",
    "scss.scss",
    "stylus.styl"
  ],
  "keywords": [
    "rfs",
    "responsive",
    "font-size",
    "typography",
    "scss",
    "sass",
    "less",
    "stylus",
    "postcss"
  ],
  "engines": {
    "node": ">=6"
  },
  "scripts": {
    "mocha": "mocha",
    "stylelint": "stylelint \"**/*.less\" \"**/*.scss\" \"**/*.sass\" --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/",
    "gulp-examples": "cd examples/less/gulp && gulp build && cd ../../postcss/gulp && gulp build && cd ../../scss/gulp && gulp build && cd ../../stylus/gulp && gulp build && cd ../../../..",
    "node-examples": "node examples/less/node/index.js && node examples/postcss/node/index.js && node examples/scss/node/index.js && node examples/stylus/node/index.js"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm test"
    }
  },
  "dependencies": {},
  "devDependencies": {
    "gulp": "^4.0.0",
    "gulp-less": "^4.0.1",
    "gulp-postcss": "^8.0.0",
    "gulp-sass": "^4.0.2",
    "gulp-stylus": "^2.7.0",
    "husky": "^1.3.1",
    "less": "^3.9.0",
    "mocha": "^6.0.2",
    "node-sass": "^4.11.0",
    "npm-run-all": "^4.1.5",
    "postcss": "^7.0.14",
    "prettier": "^1.16.4",
    "stylelint": "^9.10.1",
    "stylelint-config-standard": "^18.2.0",
    "stylus": "^0.54.5",
    "xo": "^0.24.0"
  },
  "xo": {
    "rules": {
      "ava/no-import-test-files": "off",
      "indent": [
        "error",
        2,
        {
          "MemberExpression": "off",
          "SwitchCase": 1
        }
      ],
      "prefer-destructuring": [
        "error",
        {
          "object": true,
          "array": false
        }
      ],
      "unicorn/prefer-exponentiation-operator": "off"
    }
  }
}