UNPKG

2.16 kBJSONView Raw
1{
2 "name": "stylelint-config-sass-guidelines",
3 "version": "5.3.0",
4 "description": "Sharable stylelint config based on https://sass-guidelin.es/",
5 "keywords": [
6 "stylelint",
7 "stylelint-config",
8 "stylelint-scss",
9 "scss",
10 "sass",
11 "guidelines"
12 ],
13 "author": "Brett Jankord",
14 "license": "MIT",
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/bjankord/stylelint-config-sass-guidelines.git"
18 },
19 "homepage": "https://github.com/bjankord/stylelint-config-sass-guidelines#readme",
20 "bugs": {
21 "url": "https://github.com/bjankord/stylelint-config-sass-guidelines/issues"
22 },
23 "main": "index.js",
24 "files": [
25 "index.js"
26 ],
27 "engines": {
28 "node": ">=6"
29 },
30 "dependencies": {
31 "stylelint-order": ">=1.0.0",
32 "stylelint-scss": "^3.4.0"
33 },
34 "peerDependencies": {
35 "stylelint": "^9.0.0"
36 },
37 "devDependencies": {
38 "@babel/cli": "^7.2.0",
39 "@babel/core": "^7.2.0",
40 "@babel/preset-env": "^7.2.0",
41 "babel-tape-runner": "^3.0.0",
42 "prepend-file": "^1.3.1",
43 "shelljs": "^0.8.1",
44 "stylelint": "^9.0.0",
45 "tape": "^4.2.0"
46 },
47 "scripts": {
48 "build": "node scripts/build.js",
49 "release:major": "npm test && npm run build && npm version major -m \"Released version %s\" && npm publish && git push --follow-tags",
50 "release:minor": "npm test && npm run build && npm version minor -m \"Released version %s\" && npm publish && git push --follow-tags",
51 "release:patch": "npm test && npm run build && npm version patch -m \"Released version %s\" && npm publish && git push --follow-tags",
52 "scss-lint-failing-case": "cd src; bundle exec scss-lint failing-test-cases.scss -c .scss-lint.yml; exit 0",
53 "scss-lint-passing-case": "cd src; bundle exec scss-lint passing-test-cases.scss -c .scss-lint.yml; exit 0",
54 "stylelint-failing-case": "cd src; stylelint failing-test-cases.scss; exit 0",
55 "stylelint-passing-case": "cd src; stylelint passing-test-cases.scss; exit 0",
56 "tape": "babel-tape-runner \"__tests__/**/*.js\"",
57 "test": "npm run build && npm run tape"
58 },
59 "babel": {
60 "presets": [
61 "@babel/preset-env"
62 ]
63 }
64}