This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ProgBlog/package.json

87 lines
2.3 KiB
JSON

{
"author": "Timothy J. Warren",
"dependencies": {
"axios": "^0.12.0",
"body-parser": "~1.15.1",
"ci-node-query": "^4.0.0",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"dotenv": "^2.0.0",
"errors": "^0.3.0",
"eslint": "^2.9.0",
"express": "4.*",
"express-handlebars": "^3.0.0",
"express-negotiate": "0.0.5",
"express-session": "^1.13.0",
"getargs": "0.0.8",
"glob": "^7.0.3",
"helmet": "^2.1.1",
"highlight.js": "^9.1.0",
"knex": "^0.11.5",
"lodash": "^4.5.0",
"markdown-it": "^6.0.0",
"moment": "^2.11.2",
"morgan": "~1.7.0",
"nodemon": "^1.9.0",
"npm-run-all": "^2.1.2",
"nsp": "^2.4.0",
"scrypt": "^6.0.1",
"sqlite3": "^3.1.1",
"winston": "^2.1.1"
},
"description": "A simple blog with built-in code snippet functionality",
"devDependencies": {
"apidoc": "^0.16.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"documentation": "^4.0.0-beta1",
"eslint": "^3.0.0",
"globstar": "^1.0.0",
"istanbul": "0.4.*",
"jscs": "^3.0.0",
"mocha": "^2.4.5",
"nsp": "^2.2.1",
"parallelshell": "^2.0.0",
"pre-commit": "^1.1.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.1.0"
},
"engines": {
"node": ">4.0.0"
},
"files": [
"lib/",
"server.js"
],
"license": "MIT",
"main": "./server.js",
"name": "ProgBlog",
"pre-commit": {
"silent": false,
"run": [
"default"
]
},
"repository": {
"type": "git",
"url": "https://git.timshomepage.net/timw4mail/ProgBlog.git"
},
"scripts": {
"audit": "nsp check",
"build": "npm-run-all --parallel lint:src lint:tests docs:src docs:api coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",
"css": "postcss -c postcss.config.json -w",
"default": "npm-run-all --parallel audit lint:src lint:tests test",
"docs": "npm-run-all --parallel docs:src docs:api",
"docs:api": "apidoc -i ./app/ -o ./public/api-docs/",
"docs:src": "globstar -- documentation build -f html -o public/docs \"app/**/*.js\"",
"lint": "npm-run-all lint:tests lint:src",
"lint:src": "jscs server.js ./app && eslint server.js ./app",
"lint:tests": "jscs ./test && eslint ./test",
"start": "nodemon --debug server.js",
"test": "mocha"
},
"version": "0.0.1"
}