-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 983 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
42
43
44
45
46
47
{
"name": "is-nan-component",
"version": "1.0.1",
"description": "Is NaN component",
"repository": "KenanY/is-nan",
"license": "MIT",
"author": "Kenan Yildirim <[email protected]> (http://kenany.me/)",
"main": "index.js",
"files": [
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/index.js",
"build": "component build --dev",
"components": "component install --dev",
"clean": "rm -fr build components"
},
"dependencies": {
"is-number": "KenanY/is-number"
},
"devDependencies": {
"lodash.map": "^2.4.1",
"tape": "^2.12.0"
},
"component": {
"scripts": {
"is-nan/index.js": "index.js"
}
},
"private": true,
"testling": {
"files": "test/index.js",
"browsers": [
"ie/6..latest",
"chrome/4..latest",
"firefox/3..latest",
"safari/5.1..latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6"
]
}
}