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
Raw Permalink Normal View History

2016-02-19 12:58:16 -05:00
{
"author": "Timothy J. Warren",
"dependencies": {
2016-06-14 10:51:48 -04:00
"axios": "^0.12.0",
"body-parser": "~1.15.1",
"ci-node-query": "^4.0.0",
2016-06-14 10:51:48 -04:00
"cookie-parser": "~1.4.3",
2016-02-19 12:58:16 -05:00
"debug": "~2.2.0",
"dotenv": "^2.0.0",
"errors": "^0.3.0",
"eslint": "^2.9.0",
2016-02-19 12:58:16 -05:00
"express": "4.*",
2016-02-19 16:17:59 -05:00
"express-handlebars": "^3.0.0",
2016-02-19 16:23:00 -05:00
"express-negotiate": "0.0.5",
2016-02-19 12:58:16 -05:00
"express-session": "^1.13.0",
"getargs": "0.0.8",
2016-06-14 10:51:48 -04:00
"glob": "^7.0.3",
"helmet": "^2.1.1",
2016-02-19 12:58:16 -05:00
"highlight.js": "^9.1.0",
2016-06-14 10:51:48 -04:00
"knex": "^0.11.5",
2016-02-19 12:58:16 -05:00
"lodash": "^4.5.0",
2016-02-25 20:54:23 -05:00
"markdown-it": "^6.0.0",
"moment": "^2.11.2",
2016-06-14 10:51:48 -04:00
"morgan": "~1.7.0",
2016-02-19 12:58:16 -05:00
"nodemon": "^1.9.0",
2016-06-14 10:51:48 -04:00
"npm-run-all": "^2.1.2",
"nsp": "^2.4.0",
2016-02-24 14:01:10 -05:00
"scrypt": "^6.0.1",
"sqlite3": "^3.1.1",
2016-02-19 12:58:16 -05:00
"winston": "^2.1.1"
},
2016-02-24 14:01:10 -05:00
"description": "A simple blog with built-in code snippet functionality",
2016-02-19 12:58:16 -05:00
"devDependencies": {
2016-06-14 10:51:48 -04:00
"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",
2016-02-19 12:58:16 -05:00
"istanbul": "0.4.*",
"jscs": "^3.0.0",
"mocha": "^2.4.5",
"nsp": "^2.2.1",
"parallelshell": "^2.0.0",
2016-02-19 12:58:16 -05:00
"pre-commit": "^1.1.2",
2016-03-09 14:33:45 -05:00
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
2016-02-19 12:58:16 -05:00
"supertest": "^1.1.0"
},
"engines": {
"node": ">4.0.0"
},
"files": [
"lib/",
"server.js"
],
"license": "MIT",
"main": "./server.js",
"name": "ProgBlog",
2016-02-19 12:58:16 -05:00
"pre-commit": {
"silent": false,
"run": [
"default"
2016-02-19 12:58:16 -05:00
]
},
"repository": {
"type": "git",
2016-02-24 14:01:10 -05:00
"url": "https://git.timshomepage.net/timw4mail/ProgBlog.git"
2016-02-19 12:58:16 -05:00
},
"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",
2016-06-14 10:51:48 -04:00
"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"
2016-02-19 12:58:16 -05:00
},
"version": "0.0.1"
}