Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-11-09 17:28:15 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-11-09 18:21:25 +0300
commitd74e1764796e842c957e00095c8b6aa2b300a130 (patch)
tree7fc36c7db1ded81a01859e4111b2648e857381f1 /package.json
Initial commit.
Code migrated from Bootlint v0.16.8 and adapted
Diffstat (limited to 'package.json')
-rw-r--r--package.json53
1 files changed, 53 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..9ee1c0b
--- /dev/null
+++ b/package.json
@@ -0,0 +1,53 @@
+{
+ "name": "bootlint-server",
+ "version": "1.0.0",
+ "description": "Bootlint Express app",
+ "main": "app.js",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/twbs/bootlint-server.git"
+ },
+ "keywords": [
+ "bootstrap",
+ "checker",
+ "correctness",
+ "docker",
+ "express",
+ "html",
+ "lint",
+ "linter",
+ "server",
+ "validator",
+ "validity"
+ ],
+ "author": "Chris Rebert <code@rebertia.com> (http://chrisrebert.com)",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/twbs/bootlint-server/issues"
+ },
+ "homepage": "https://github.com/twbs/bootlint-server#readme",
+ "scripts": {
+ "eslint": "eslint --cache-location .cache/.eslintcache --report-unused-disable-directives .",
+ "lint": "npm run eslint",
+ "start": "node ./bin/www",
+ "test": "npm run eslint"
+ },
+ "dependencies": {
+ "body-parser": "^1.19.0",
+ "bootlint": "^0.16.8",
+ "debug": "^4.1.1",
+ "express": "^4.17.1",
+ "morgan": "^1.9.1"
+ },
+ "devDependencies": {
+ "eslint": "^6.6.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "files": [
+ "bin/www",
+ "app.js",
+ "Dockerfile"
+ ]
+}