mit-license/package.json
Richie Bendall f189d33f29
fix: Properly parse gravatar boolean and switch to standard linter.
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-01-14 21:05:39 +13:00

57 lines
1.3 KiB
JSON

{
"author": "Remy Sharp <remy@leftlogic.com> (http://remysharp.com/)",
"name": "mit-licence",
"description": "Hosted MIT License with details controlled through this repo",
"private": true,
"version": "2.0.0",
"main": "server.js",
"repository": {
"type": "git",
"url": "git@github.com:remy/mit-license.git"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"scripts": {
"start": "node .",
"dev": "nodemon .",
"serve": "node server.js",
"test": "node test.js",
"lint": "standard"
},
"bugs": {
"url": "https://github.com/remy/mit-license/issues"
},
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.36.0",
"btoa": "^1.2.1",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-minify": "^1.0.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"postcss-middleware": "^1.1.4",
"postcss-preset-env": "^6.7.0",
"serve-favicon": "^2.5.0",
"temp-dir": "^2.0.0",
"yn": "^4.0.0"
},
"devDependencies": {
"css": "^2.2.4",
"has-flag": "^4.0.0",
"husky": "^4.0.7",
"nodemon": "^2.0.2",
"standard": "^14.3.1"
},
"resolutions": {
"postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^3.0.2"
}
}