-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
52
53
54
55
56
{
"name": "@bablr/boot",
"version": "0.0.0",
"description": "Compile-time tools for bootstrapping BABLR VM",
"engines": {
"node": ">=12.0.0"
},
"exports": {
".": {
"require": "./dist/cjs.bundle.cjs",
"import": "./lib/esm-entry.mjs"
},
"./shorthand.macro": "./shorthand.macro.js"
},
"files": [
"dist/**/*.cjs",
"dist/**/*.mjs",
"lib/esm-entry.mjs",
"lib/**/*.js",
"shorthand.macro.js"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c"
},
"dependencies": {
"@babel/helper-module-imports": "^7.22.15",
"@babel/template": "^7.22.15",
"@babel/types": "7.23.0",
"@bablr/boot-helpers": "0.3.2",
"@iter-tools/imm-stack": "1.1.0",
"escape-string-regexp": "4.0.0",
"iter-tools-es": "^7.5.3",
"jest-diff": "29.7.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@bablr/eslint-config-base": "github:bablr-lang/eslint-config-base#a49dbe6861a82d96864ee89fbf0ec1844a8a5e8e",
"babel-plugin-macros": "^3.1.0",
"enhanced-resolve": "^5.12.0",
"eslint": "^8.47.0",
"eslint-import-resolver-enhanced-resolve": "^1.0.5",
"eslint-plugin-import": "^2.27.5",
"expect": "^29.6.2",
"install": "^0.13.0",
"npm": "^10.9.0",
"prettier": "^2.0.5"
},
"repository": "[email protected]:bablr-lang/boot.git",
"homepage": "https://github.com/bablr-lang/boot",
"author": "Conrad Buck <[email protected]>",
"license": "MIT"
}