-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 993 Bytes
/
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
{
"name": "replace-require-with-import",
"version": "2.1.0",
"description": "Replace Node.js CommonJS require statements with their ES2015 equivalent",
"main": "index.js",
"files": [
"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"
},
"scripts": {
"test": "./test"
},
"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)",
"Alexander Wunschik (https://github.com/mojoaxel)"
]
}