forked from mathiasbynens/String.prototype.codePointAt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 935 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "string.prototype.codepointat",
"version": "0.1.0",
"description": "A robust & optimized `String.prototype.codePointAt` polyfill, based on the ECMAScript 6 specification.",
"homepage": "http://mths.be/codepointat",
"main": "codepointat.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.prototype.codePointAt.git"
},
"bugs": {
"url": "https://github.com/mathiasbynens/String.prototype.codePointAt/issues"
},
"files": [
"LICENSE-MIT.txt",
"codepointat.js"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "node tests/tests.js",
"cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js"
}
}