text2smiles
Version:
Converting text to smiles
52 lines • 1.59 kB
JSON
{
"author": "Evgeni Korsunov<5345043@gmail.com>",
"version": "1.3.0",
"name": "text2smiles",
"description": "Converting text to smiles",
"keywords": [
"emoji",
"smiles",
"text to emoji",
"text to symbols",
"converting text"
],
"main": "./lib/index.js",
"scripts": {
"commit": "git-cz",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register ./src/tests",
"deploy": "npm run test-all && npm publish",
"lint": "./node_modules/.bin/eslint ./src",
"prepublish": "babel src --out-dir lib",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register ./src/tests",
"test-all": "npm run lint && npm run coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"istanbul": "^1.0.0-alpha",
"mocha": "^3.2.0",
"semantic-release": "^6.3.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sensone/text2smiles.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}