-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packages: update the package.json to be importable as esm from node 17
- Loading branch information
Showing
12 changed files
with
46 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
"name": "lively.ast", | ||
"version": "0.11.3", | ||
"description": "Parsing JS code into ASTs and tools to query and transform these trees.", | ||
"main": "dist/lively.ast.js", | ||
"main": "index.js", | ||
"type": "module", | ||
"scripts": { | ||
"test": "mocha-es6 tests/*-test.js", | ||
"build": "node ./tools/build.js" | ||
|
@@ -26,10 +27,17 @@ | |
}, | ||
"homepage": "https://github.com/LivelyKernel/lively.ast", | ||
"dependencies": { | ||
"lively.lang": "^1.0.0" | ||
"lively.lang": "^1.0.0", | ||
"esutils": "2.0.3", | ||
"@javascript-obfuscator/estraverse": "5.4.0", | ||
"astq": "2.7.5", | ||
"escodegen": "2.0.0", | ||
"acorn": "8.0.4", | ||
"acorn-walk": "8.2.0", | ||
"acorn-loose": "8.3.0" | ||
}, | ||
"devDependencies": { | ||
"acorn": "^5.2.1", | ||
"acorn": "8.0.4", | ||
"acorn-jsx": "^4.1.0", | ||
"acorn-es7-plugin": "^1.1.7", | ||
"acorn5-object-spread": "^4.0.0", | ||
|
@@ -47,10 +55,13 @@ | |
"systemjs": { | ||
"main": "index.js", | ||
"map": { | ||
"escodegen": "https://jspm.dev/escodegen", | ||
"acorn-walk": "https://jspm.dev/acorn-walk", | ||
"acorn-loose": "https://jspm.dev/acorn-loose", | ||
"escodegen": "https://jspm.dev/escodegen@2.0.0", | ||
"acorn-walk": "https://jspm.dev/acorn-walk@8.2.0", | ||
"acorn-loose": "https://jspm.dev/acorn-loose@8.3.0", | ||
"acorn": "https://jspm.dev/[email protected]", | ||
"esutils": "https://jspm.dev/[email protected]", | ||
"astq": "https://jspm.dev/[email protected]", | ||
"@javascript-obfuscator/estraverse": "https://jspm.dev/@javascript-obfuscator/[email protected]", | ||
"util": { | ||
"node": "@node/util", | ||
"~node": "@empty" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"name": "lively.bindings", | ||
"version": "0.1.2", | ||
"type": "module", | ||
"dependencies": { | ||
"lively.lang": "*" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
"name": "lively.lang", | ||
"version": "1.0.25", | ||
"description": "JavaScript utils providing useful abstractions for working with collections, functions, objects.", | ||
"main": "dist/lively.lang.js", | ||
"main": "./index.js", | ||
"type": "module", | ||
"systemjs": { | ||
"main": "index.js", | ||
"map": { | ||
|
@@ -33,6 +34,9 @@ | |
"articles": "https://jspm.dev/npm:[email protected]" | ||
} | ||
}, | ||
"dependencies": { | ||
"articles": "^0.2.2" | ||
}, | ||
"devDependencies": { | ||
"babel-core": "^6.16.0", | ||
"babel-plugin-external-helpers": "^6.8.0", | ||
|
@@ -87,4 +91,4 @@ | |
"url": "https://github.com/LivelyKernel/lively.lang/issues" | ||
}, | ||
"homepage": "https://github.com/LivelyKernel/lively.lang" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters