package.json
1 { 2 "name": "escape-string-regexp", 3 "version": "2.0.0", 4 "description": "Escape RegExp special characters", 5 "license": "MIT", 6 "repository": "sindresorhus/escape-string-regexp", 7 "author": { 8 "name": "Sindre Sorhus", 9 "email": "sindresorhus@gmail.com", 10 "url": "sindresorhus.com" 11 }, 12 "maintainers": [ 13 "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)", 14 "Joshua Boy Nicolai Appelman <joshua@jbna.nl> (jbna.nl)" 15 ], 16 "engines": { 17 "node": ">=8" 18 }, 19 "scripts": { 20 "test": "xo && ava && tsd" 21 }, 22 "files": [ 23 "index.js", 24 "index.d.ts" 25 ], 26 "keywords": [ 27 "escape", 28 "regex", 29 "regexp", 30 "re", 31 "regular", 32 "expression", 33 "string", 34 "str", 35 "special", 36 "characters" 37 ], 38 "devDependencies": { 39 "ava": "^1.4.1", 40 "tsd": "^0.7.2", 41 "xo": "^0.24.0" 42 } 43 }