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