stylelint-itcss
Version:
A stylelint plugin to help with itcss architecture
55 lines (54 loc) • 1.58 kB
JSON
{
"name": "stylelint-itcss",
"version": "0.4.0",
"description": "A stylelint plugin to help with itcss architecture",
"main": "dist/src/index.js",
"scripts": {
"compile": "tsc -watch -p ./",
"lint": "node ./node_modules/.bin/tslint -c tslint.json --project tsconfig.json",
"test": "tsc -b; ./node_modules/.bin/ava",
"commit": "npx git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r -a",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r -a && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/kamikillerto/stylelint-itcss.git"
},
"bugs": {
"url": "https://github.com/kamikillerto/stylelint-itcss/issues"
},
"homepage": "https://github.com/kamikillerto/stylelint-itcss/blob/master/README.MD",
"keywords": [
"stylelint",
"stylelint-plugin",
"itcss",
"css"
],
"author": "Benjamin JEGARD",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.0",
"@commitlint/config-conventional": "^8.3.0",
"@commitlint/config-angular": "^8.3.0",
"@types/node": "^13.7.4",
"ava": "^1.3.0",
"commitizen": "4.0.3",
"conventional-changelog-cli": "2.0.31",
"cz-conventional-changelog": "3.1.0",
"husky": "4.2.3",
"stylelint": "9.10.1",
"tslint": "5.11.0",
"typescript": "3.7.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}