-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.25 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
83
84
85
86
{
"name": "rfs",
"version": "8.0.4",
"main": "postcss.js",
"description": "Powerful & easy-to-use responsive font sizing engine.",
"author": "Martijn Cuppens <[email protected]>",
"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": ">=8"
},
"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.1",
"gulp-less": "^4.0.1",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"gulp-stylus": "^2.7.0",
"husky": "^2.2.0",
"less": "^3.9.0",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.14",
"prettier": "^1.17.0",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylus": "^0.54.5",
"xo": "^0.24.0"
},
"xo": {
"space": true,
"rules": {
"ava/no-import-test-files": "off",
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
}
],
"promise/prefer-await-to-then": "off",
"unicorn/prefer-exponentiation-operator": "off"
}
}
}