UNPKG

1.36 kBJSONView Raw
1{
2 "name": "jsesc",
3 "version": "3.0.2",
4 "description": "Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data.",
5 "homepage": "https://mths.be/jsesc",
6 "engines": {
7 "node": ">=6"
8 },
9 "main": "jsesc.js",
10 "bin": "bin/jsesc",
11 "man": "man/jsesc.1",
12 "keywords": [
13 "buffer",
14 "escape",
15 "javascript",
16 "json",
17 "map",
18 "set",
19 "string",
20 "stringify",
21 "tool"
22 ],
23 "license": "MIT",
24 "author": {
25 "name": "Mathias Bynens",
26 "url": "https://mathiasbynens.be/"
27 },
28 "repository": {
29 "type": "git",
30 "url": "https://github.com/mathiasbynens/jsesc.git"
31 },
32 "bugs": "https://github.com/mathiasbynens/jsesc/issues",
33 "files": [
34 "LICENSE-MIT.txt",
35 "jsesc.js",
36 "bin/",
37 "man/"
38 ],
39 "scripts": {
40 "build": "grunt template",
41 "coveralls": "istanbul cover --verbose --dir 'coverage' 'tests/tests.js' && coveralls < coverage/lcov.info'",
42 "cover": "istanbul cover --report 'html' --verbose --dir 'coverage' 'tests/tests.js'",
43 "test": "mocha tests"
44 },
45 "devDependencies": {
46 "coveralls": "^2.11.6",
47 "grunt": "^0.4.5",
48 "grunt-cli": "^1.3.2",
49 "grunt-template": "^0.2.3",
50 "istanbul": "^0.4.2",
51 "mocha": "^5.2.0",
52 "regenerate": "^1.3.0",
53 "requirejs": "^2.1.22",
54 "unicode-13.0.0": "0.8.0"
55 }
56}