1{ 2 "name": "cssesc", 3 "version": "3.0.0", 4 "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.", 5 "homepage": "https://mths.be/cssesc", 6 "engines": { 7 "node": ">=4" 8 }, 9 "main": "cssesc.js", 10 "bin": "bin/cssesc", 11 "man": "man/cssesc.1", 12 "keywords": [ 13 "css", 14 "escape", 15 "identifier", 16 "string", 17 "tool" 18 ], 19 "license": "MIT", 20 "author": { 21 "name": "Mathias Bynens", 22 "url": "https://mathiasbynens.be/" 23 }, 24 "repository": { 25 "type": "git", 26 "url": "https://github.com/mathiasbynens/cssesc.git" 27 }, 28 "bugs": "https://github.com/mathiasbynens/cssesc/issues", 29 "files": [ 30 "LICENSE-MIT.txt", 31 "cssesc.js", 32 "bin/", 33 "man/" 34 ], 35 "scripts": { 36 "build": "grunt template && babel cssesc.js -o cssesc.js", 37 "test": "mocha tests", 38 "cover": "istanbul cover --report html node_modules/.bin/_mocha tests -- -u exports -R spec" 39 }, 40 "devDependencies": { 41 "babel-cli": "^6.26.0", 42 "babel-preset-env": "^1.6.1", 43 "codecov": "^1.0.1", 44 "grunt": "^1.0.1", 45 "grunt-template": "^1.0.0", 46 "istanbul": "^0.4.4", 47 "mocha": "^2.5.3", 48 "regenerate": "^1.2.1", 49 "requirejs": "^2.1.16" 50 } 51} 52