forked from stefanduberg/array-find
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 713 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 713 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
{
"name": "array-find",
"version": "1.0.0",
"description": "ES6 Array.find ponyfill. Return the first array element which satisfies a testing function.",
"main": "find.js",
"scripts": {
"test": "tape ./test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stefanduberg/array-find.git"
},
"keywords": [
"array",
"find",
"ponyfill",
"polyfill",
"es6",
"es2015",
"es 2015"
],
"author": "Stefan Duberg <stefanduberg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanduberg/array-find/issues"
},
"homepage": "https://github.com/stefanduberg/array-find",
"devDependencies": {
"tape": "^4.0.0"
}
}