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