-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "dynohot",
"type": "module",
"version": "1.2.0",
"exports": {
".": "./dist/loader/register.js",
"./loader": "./dist/loader/loader.js",
"./register": "./dist/loader/register.js",
"./import-meta": {
"types": "./import-meta.d.ts"
},
"./*": {
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
}
},
"scripts": {
"lint": "eslint --max-warnings=0 --report-unused-disable-directives .",
"prepare": "rm -rf dist && tsc -b",
"test": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/generator": "^7.24.7",
"@babel/traverse": "^7.24.7",
"convert-source-map": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@braidai/eslintrc": "^1.0.0",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/convert-source-map": "^2.0.2",
"@types/node": "^20.14.9",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"typescript": "^5.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/braidnetworks/dynohot.git"
},
"author": "https://github.com/braidnetworks/",
"license": "ISC",
"homepage": "https://github.com/braidnetworks/dynohot#readme"
}