Changeset 79a0317 for imaps-frontend/node_modules/jsesc/package.json
- Timestamp:
- 01/21/25 03:08:24 (2 weeks ago)
- Branches:
- main
- Parents:
- 0c6b92a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/jsesc/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "jsesc", 3 "version": "3.0.2", 2 "_from": "jsesc@^3.0.2", 3 "_id": "jsesc@3.1.0", 4 "_inBundle": false, 5 "_integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 6 "_location": "/jsesc", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "jsesc@^3.0.2", 12 "name": "jsesc", 13 "escapedName": "jsesc", 14 "rawSpec": "^3.0.2", 15 "saveSpec": null, 16 "fetchSpec": "^3.0.2" 17 }, 18 "_requiredBy": [ 19 "/@babel/generator" 20 ], 21 "_resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 22 "_shasum": "74d335a234f67ed19907fdadfac7ccf9d409825d", 23 "_spec": "jsesc@^3.0.2", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@babel/generator", 25 "author": { 26 "name": "Mathias Bynens", 27 "url": "https://mathiasbynens.be/" 28 }, 29 "bin": { 30 "jsesc": "bin/jsesc" 31 }, 32 "bugs": { 33 "url": "https://github.com/mathiasbynens/jsesc/issues" 34 }, 35 "bundleDependencies": false, 36 "deprecated": false, 4 37 "description": "Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data.", 5 "homepage": "https://mths.be/jsesc", 38 "devDependencies": { 39 "coveralls": "^2.11.6", 40 "grunt": "^0.4.5", 41 "grunt-cli": "^1.3.2", 42 "grunt-template": "^0.2.3", 43 "istanbul": "^0.4.2", 44 "mocha": "^5.2.0", 45 "regenerate": "^1.3.0", 46 "requirejs": "^2.1.22", 47 "unicode-13.0.0": "0.8.0" 48 }, 6 49 "engines": { 7 50 "node": ">=6" 8 51 }, 9 "main": "jsesc.js", 10 "bin": "bin/jsesc", 11 "man": "man/jsesc.1", 52 "files": [ 53 "LICENSE-MIT.txt", 54 "jsesc.js", 55 "bin/", 56 "man/" 57 ], 58 "homepage": "https://mths.be/jsesc", 12 59 "keywords": [ 13 60 "buffer", … … 22 69 ], 23 70 "license": "MIT", 24 "author": { 25 "name": "Mathias Bynens", 26 "url": "https://mathiasbynens.be/" 27 }, 71 "main": "jsesc.js", 72 "man": [ 73 "man/jsesc.1" 74 ], 75 "name": "jsesc", 28 76 "repository": { 29 77 "type": "git", 30 "url": " https://github.com/mathiasbynens/jsesc.git"78 "url": "git+https://github.com/mathiasbynens/jsesc.git" 31 79 }, 32 "bugs": "https://github.com/mathiasbynens/jsesc/issues",33 "files": [34 "LICENSE-MIT.txt",35 "jsesc.js",36 "bin/",37 "man/"38 ],39 80 "scripts": { 40 81 "build": "grunt template", 82 "cover": "istanbul cover --report 'html' --verbose --dir 'coverage' 'tests/tests.js'", 41 83 "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 84 "test": "mocha tests" 44 85 }, 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 } 86 "version": "3.1.0" 56 87 }
Note:
See TracChangeset
for help on using the changeset viewer.