wikic
Version:
a simple static site generator
109 lines (108 loc) • 2.72 kB
JSON
{
"name": "wikic",
"version": "3.3.4",
"description": "a simple static site generator",
"main": "lib/wikic/index.js",
"bin": {
"wikic": "bin/wikic.js"
},
"author": "dgeibi",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --ignore-path ./.gitignore --write \"{lib,__mocks__,bin,example}/**/*.js\"",
"build": "node util/copy.js ./README.md example/index.md && node ./bin/wikic.js build -c -o docs -d example",
"watch": "node util/copy.js ./README.md example/index.md && node ./bin/wikic.js build -c -w -o docs -d example",
"test": "jest",
"test:coverage": "npm test -- --coverage --collectCoverageFrom=lib/**/*.js --collectCoverageFrom=!lib/utils/uncache/**",
"test:watch": "npm test -- --watch",
"prepublishOnly": "npm test && npm run format",
"coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged"
},
"dependencies": {
"anymatch": "^2.0.0",
"chokidar": "^2.0.3",
"commander": "^2.15.0",
"dot-prop": "^4.2.0",
"find-parent-dir": "^0.3.0",
"front-matter": "^2.3.0",
"fs-extra": "^6.0.0",
"get-port": "^3.2.0",
"github-slugger": "^1.2.0",
"glob": "^7.1.2",
"html-toc": "^2.0.0",
"import-from": "^2.1.0",
"js-yaml": "^3.11.0",
"lodash": "^4.17.5",
"markdown-it": "^8.4.1",
"markdown-it-prism": "^1.1.2",
"nunjucks": "^3.1.2",
"title-case": "^2.1.1",
"winston": "^2.4.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^4.19.0",
"eslint-config-dgeibi": "^5.0.0",
"husky": "^0.14.3",
"jest": "^23.0.0",
"jest-cli": "^23.0.0",
"lint-staged": "^7.2.0",
"prettier": "^1.11.1"
},
"engines": {
"node": ">=8.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wikic/wikic.git"
},
"bugs": {
"url": "https://github.com/wikic/wikic/issues"
},
"homepage": "https://github.com/wikic/wikic#readme",
"directories": {
"doc": "docs",
"example": "example"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/helpers/",
"/_test_res_/"
]
},
"keywords": [
"wikic",
"wiki",
"static",
"page",
"docs",
"generator",
"markdown"
],
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
".*rc": [
"prettier --parser json --write",
"git add"
]
}
}