-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
73 lines (73 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "commonjs-everywhere",
"version": "0.9.7",
"description": "CommonJS browser bundler with aliasing, extensibility, and source maps from the minified JS bundle",
"homepage": "https://github.com/michaelficarra/commonjs-everywhere",
"keywords": [
"CommonJS",
"CommonJS Everywhere",
"browser",
"build",
"bundle",
"cjsify",
"browserify",
"dependency resolution"
],
"author": {
"name": "Michael Ficarra",
"email": "git@michael.ficarra.me"
},
"repository": {
"type": "git",
"url": "git://github.com/michaelficarra/commonjs-everywhere.git"
},
"bugs": "https://github.com/michaelficarra/commonjs-everywhere/issues",
"engines": {
"node": "0.8.x || 0.9.x || 0.10.x"
},
"main": "lib/module",
"bin": {
"cjsify": "./bin/cjsify"
},
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"dependencies": {
"Base64": "0.2.x",
"coffee-script-redux": "2.0.0-beta8",
"esprima": "1.x.x",
"estraverse": "1.5.x",
"escodegen": "1.2.x",
"esmangle": "~1.0.0",
"MD5": "~1.2",
"mktemp": "0.3.x",
"nopt": "~2.1.2",
"resolve": "0.6.x",
"buffer-browserify": "*",
"constants-browserify": ">= 0.0.1",
"crypto-browserify": "*",
"events-browserify": "*",
"http-browserify": "*",
"punycode": "*",
"querystring": "*",
"vm-browserify": "*",
"browserify-zlib": "*"
},
"devDependencies": {
"coffee-script-redux": "2.0.0-beta8",
"mocha": "~1.14.0",
"scopedfs": "~0.1.0",
"semver": "~2.2.1"
},
"scripts": {
"test": "make test"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/michaelficarra/commonjs-everywhere/blob/master/LICENSE"
}
]
}