-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.04 KB
/
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
48
49
50
{
"name": "pathmodify",
"version": "0.5.0",
"main": "pathmodify.js",
"license": "MIT",
"author": "Jesse McCarthy (http://software.jessemccarthy.net/)",
"files": [
"pathmodify.js",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jmm/pathmodify.git"
},
"homepage": "https://github.com/jmm/pathmodify",
"description": "Rewrite (alias) and expose `require()` IDs in browserify.",
"keywords": [
"browserify",
"browserify-plugin",
"alias",
"map",
"rewrite",
"path",
"directory",
"require",
"expose",
"exposure"
],
"scripts": {
"test": "istanbul cover _mocha test/index.js"
},
"dependencies": {
"readable-stream": "1.x"
},
"devDependencies": {
"browserify": ">=5.1.0",
"istanbul": "0.4.0",
"mocha": "2.x",
"object-assign": "^4.0.0",
"proxyquire": "^1.7.0",
"readable-stream": "1.x",
"sinon": "^1.17.0"
},
"peerDependencies": {
"browserify": ">=5.1.0"
}
}