fade-text
Version:
Simple letter-by-letter fading text effect
47 lines (46 loc) • 1.2 kB
JSON
{
"name": "fade-text",
"version": "0.1.4",
"description": "Simple letter-by-letter fading text effect",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasofalcon/fade-text.git"
},
"keywords": [
"animation",
"fading",
"text",
"fade"
],
"author": "jasofalcon",
"license": "ISC",
"bugs": {
"url": "https://github.com/jasofalcon/fade-text/issues"
},
"homepage": "https://github.com/jasofalcon/fade-text#readme",
"devDependencies": {
"@types/jest": "^23.3.13",
"jest": "^23.6.0",
"prettier": "^1.16.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4"
},
"files": [
"lib/**/*"
]
}