forked from benjamn/reify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "reify",
"version": "0.22.2",
"main": "node/index.js",
"browser": "lib/empty.js",
"author": "Ben Newman <ben@benjamn.com>",
"description": "Enable ECMAScript 2015 modules in Node today. No caveats. Full stop.",
"repository": {
"type": "git",
"url": "git+https://github.com/benjamn/reify.git"
},
"keywords": [
"ecmascript",
"modules",
"import",
"export",
"commonjs",
"require",
"exports",
"node"
],
"license": "MIT",
"homepage": "https://github.com/benjamn/reify#readme",
"bugs": {
"url": "https://github.com/benjamn/reify/issues"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "test/run.sh"
},
"dependencies": {
"acorn": "^6.1.1",
"acorn-dynamic-import": "^4.0.0",
"magic-string": "^0.25.3",
"semver": "^5.4.1"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/parser": "7.16.4",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.16.4",
"lodash": "4.17.21",
"mocha": "9.1.1",
"recast": "0.20.5"
}
}