kss
Version:
The Node.js port of KSS: A methodology for documenting CSS and building style guides
65 lines (64 loc) • 1.58 kB
JSON
{
"name": "kss",
"version": "3.1.0",
"description": "The Node.js port of KSS: A methodology for documenting CSS and building style guides",
"homepage": "http://kss-node.github.io/kss-node",
"bugs": {
"url": "https://github.com/kss-node/kss-node/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/kss-node/kss-node.git"
},
"author": "John Albin Wilkins <virtually.johnalbin@gmail.com> (http://john.albin.net/)",
"keywords": [
"styleguide",
"kss",
"kss-node"
],
"main": "lib/kss.js",
"directories": {
"bin": "bin",
"example": "demo",
"test": "test"
},
"scripts": {
"lint": "eslint bin/kss bin/kss-node .",
"test": "nyc mocha",
"posttest": "npm run lint",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "make docs",
"docs-deploy": "gh-pages -d docs"
},
"license": "(MIT OR GPL-2.0)",
"dependencies": {
"bluebird": "^3.7.2",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"highlight.js": "^10.4.1",
"markdown-it": "^12.0.2",
"nunjucks": "^3.2.2",
"resolve": "^1.19.0",
"twig": "^1.15.4",
"twig-drupal-filters": "^3.1.2",
"yargs": "^16.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.14.0",
"gh-pages": "^3.1.0",
"jsdoc": "^3.6.6",
"mocha": "^8.2.1",
"mock-utf8-stream": "^0.1.1",
"nyc": "^15.1.0"
},
"bin": {
"kss": "./bin/kss",
"kss-node": "./bin/kss-node"
},
"engines": {
"node": ">=8.0"
}
}