-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "require-globify",
"version": "1.4.1",
"description": "transform for browserify, which allows to require files with globbing expressions",
"main": "./index.js",
"scripts": {
"test": "mocha spec"
},
"repository": {
"type": "git",
"url": "https://github.com/capaj/require-globify.git"
},
"files": [
"index.js",
"resolvers/",
"modes/"
],
"keywords": [
"browserify",
"browserify-transform",
"require",
"glob"
],
"author": "Jiří špác <capajj@gmail.com> (https://coderwall.com/capaj)",
"contributors": [
{
"name": "Adriaan Callaerts",
"email": "adriaan.callaerts@gmail.com",
"url": "https://github.com/call-a3"
},
{
"name": "Pat Collins",
"email": "pat@burned.com",
"url": "http://burned.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/capaj/require-globify/issues"
},
"homepage": "https://github.com/capaj/require-globify",
"dependencies": {
"browserify-transform-tools": "^1.6.0",
"glob": "^7.0.5"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2"
}
}