forked from jameswomack/replace-require-with-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 863 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 863 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
{
"name": "replace-require-with-import",
"version": "1.2.0",
"description": "Replace Node.js CommonJS require statements with their ES2015 equivalent",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jameswomack/replace-require-with-import.git"
},
"keywords": [
"es6",
"es2015",
"convert",
"conversion",
"import",
"require",
"node",
"commonjs"
],
"bin": {
"require2import": "./index.js"
},
"author": "James J. Womack (@james_womack)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jameswomack/replace-require-with-import/issues"
},
"homepage": "https://github.com/jameswomack/replace-require-with-import#readme",
"dependencies": {
"globby": "^6.1.0"
},
"contributors": [
"Ole Morten Didriksen (https://github.com/oledid)"
]
}