-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.28 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"author": {
"name": "Brandon Selway",
"email": "brandon.selway@gmail.com",
"url": "http://cellvia.github.io"
},
"name": "foldify",
"version": "0.5.13",
"description": "Import / require folder(s) of any type of files, and evaluate / curry the results.",
"main": "./index.js",
"keywords": [
"require",
"require-all",
"recursive",
"directory",
"browserify",
"browserify-transform",
"curry",
"files"
],
"dependencies": {
"callsite": "~1.0.0",
"escodegen": "~1.0.0",
"falafel": "~0.3.1",
"minimatchify": "~0.2.15",
"through": "~2.3.4"
},
"devDependencies": {
"tape": "~2.12.3"
},
"repository": {
"type": "git",
"url": "git://github.com/cellvia/foldify.git"
},
"scripts": {
"test": "tape test/*.js"
},
"browserify": {
"transform": [
"./transform.js"
]
},
"browser": {
"foldify": "./index.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/21..latest",
"firefox/nightly",
"chrome/26..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
},
"license": "MIT"
}