123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "string.fromcodepoint",
- "version": "0.2.1",
- "description": "A robust & optimized `String.fromCodePoint` polyfill, based on the ECMAScript 6 specification.",
- "homepage": "http://mths.be/fromcodepoint",
- "main": "fromcodepoint.js",
- "keywords": [
- "string",
- "unicode",
- "es6",
- "ecmascript",
- "polyfill"
- ],
- "licenses": [
- {
- "type": "MIT",
- "url": "http://mths.be/mit"
- }
- ],
- "author": {
- "name": "Mathias Bynens",
- "url": "http://mathiasbynens.be/"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/mathiasbynens/String.fromCodePoint.git"
- },
- "bugs": {
- "url": "https://github.com/mathiasbynens/String.fromCodePoint/issues"
- },
- "files": [
- "LICENSE-MIT.txt",
- "fromcodepoint.js"
- ],
- "directories": {
- "test": "tests"
- },
- "scripts": {
- "test": "node tests/tests.js",
- "cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js"
- }
- }
|