gitmoji/package.json
Carlos Cuesta 30c73c5706
🔥 Remove .babelrc
Use .babelrc config from the package.json
2016-11-13 10:20:02 +01:00

44 lines
1.1 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",
"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": {
"babel-core": "^6.18.0",
"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": "^2.3.2"
},
"devDependencies": {
"browser-sync": "^2.17.5",
"gulp-gh-pages": "^0.5.4"
}
}