-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 879 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
35
36
37
38
39
40
41
{
"name": "intersect",
"description": "Find the intersection of two arrays",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/intersect.git"
},
"homepage": "https://github.com/juliangruber/intersect",
"main": "index.js",
"type": "module",
"scripts": {
"test": "standard --fix && tape test/*.js"
},
"devDependencies": {
"standard": "^17.0.0",
"tape": "^5.6.3"
},
"keywords": [
"intersect",
"array"
],
"author": {
"name": "Julian Gruber",
"email": "[email protected]",
"url": "http://juliangruber.com"
},
"license": "MIT",
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/20..latest",
"firefox/10..latest",
"safari/5.0.5..latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6"
]
}
}