forked from mathiasbynens/String.prototype.at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 791 Bytes
/
package.json
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
{
"name": "string.prototype.at",
"version": "0.2.0",
"description": "A robust & optimized `String.prototype.at` prollyfill, based on the proposal for ECMAScript 6/7.",
"homepage": "https://mths.be/at",
"main": "at.js",
"keywords": [
"string",
"unicode",
"es6",
"es7",
"ecmascript",
"polyfill",
"prollyfill"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/String.prototype.at.git"
},
"bugs": "https://github.com/mathiasbynens/String.prototype.at/issues",
"files": [
"LICENSE-MIT.txt",
"at.js"
],
"scripts": {
"test": "node tests/tests.js",
"cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js"
}
}