-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 924 Bytes
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
{
"name": "browserify-ftw",
"version": "1.0.1",
"description": "Upgrade your app from requireJS AMD to commonJS module format via an automated refactor step in order to browserify it.",
"main": "browserify-ftw.js",
"scripts": {
"test": "tap ./test/*.js"
},
"bin": {
"browserify-ftw": "./bin/browserify-ftw.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/browserify-ftw.git"
},
"keywords": [
"browserify",
"browserify-tool",
"refactor",
"upgrade",
"commonJS",
"requireJS"
],
"author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
"license": "MIT",
"dependencies": {
"cardinal": "~0.5.0",
"esprima": "~3.1.3",
"estraverse": "~4.0.0",
"map-stream": "0.0.5",
"npmlog": "~1.2.0",
"optimist": "~0.6.1",
"readdirp": "~1.3.0",
"xtend": "~4.0.0"
},
"devDependencies": {
"tap": "~0.3.3"
}
}