package.json
1 { 2 "name": "kleur", 3 "version": "3.0.3", 4 "repository": "lukeed/kleur", 5 "description": "The fastest Node.js library for formatting terminal text with ANSI colors~!", 6 "license": "MIT", 7 "files": [ 8 "*.js", 9 "*.d.ts" 10 ], 11 "author": { 12 "name": "Luke Edwards", 13 "email": "luke.edwards05@gmail.com", 14 "url": "lukeed.com" 15 }, 16 "scripts": { 17 "test": "tape test/*.js | tap-spec" 18 }, 19 "engines": { 20 "node": ">=6" 21 }, 22 "keywords": [ 23 "ansi", 24 "cli", 25 "color", 26 "colors", 27 "console", 28 "terminal" 29 ], 30 "types": "kleur.d.ts", 31 "devDependencies": { 32 "tap-spec": "^5.0.0", 33 "tape": "^4.9.1" 34 } 35 }