mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "gitmoji",
|
|
"version": "1.0.0",
|
|
"description": "An emoji guide for your commit messages",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"jsonvalidate": "jsonlint ./src/data/gitmojis.json -V ./src/data/schema.json",
|
|
"contributors": "curl https://api.github.com/repos/carloscuesta/gitmoji/contributors -o ./src/data/contributors.json",
|
|
"deploy": "gulp deploy",
|
|
"start": "npm run contributors && gulp",
|
|
"test": "npm run jsonvalidate && gulp test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/carloscuesta/gitmoji.git"
|
|
},
|
|
"author": "Carlos Cuesta",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/carloscuesta/gitmoji/issues"
|
|
},
|
|
"pugLintConfig": {
|
|
"disallowHtmlText": true,
|
|
"disallowDuplicateAttributes": true,
|
|
"disallowClassAttributeWithStaticValue": true,
|
|
"disallowIdAttributeWithStaticValue": true,
|
|
"requireLowerCaseAttributes": true
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"es2015"
|
|
]
|
|
},
|
|
"homepage": "https://github.com/carloscuesta/gitmoji#readme",
|
|
"dependencies": {
|
|
"async": "^2.1.2",
|
|
"babel-core": "^6.22.1",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-plumber": "^1.1.0",
|
|
"gulp-pug": "^3.1.0",
|
|
"gulp-pug-lint": "^0.1.6",
|
|
"gulp-sass": "^3.1.0",
|
|
"pdfkit": "^0.8.0",
|
|
"request": "^2.79.0"
|
|
},
|
|
"devDependencies": {
|
|
"browser-sync": "^2.17.5",
|
|
"gulp-gh-pages": "^0.5.4",
|
|
"jsonlint": "^1.6.2"
|
|
}
|
|
}
|