-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.87 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
57
58
59
60
61
62
63
64
65
{
"name": "babel-register-esm",
"version": "1.2.5",
"description": "ESM loader for Babel, similar to @babel/register",
"type": "module",
"exports": "./src/babel-register-esm.js",
"main": "./src/babel-register-esm.js",
"types": "./types/src/babel-register-esm.d.ts",
"engines": {
"node": ">=12.17.0"
},
"files": [
"src",
"types"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "concurrently -r 'npm:build:*'",
"build:typescript": "rm -rf types && tsc && cp src/*.d.ts types/src",
"test": "concurrently -r 'npm:test:*'",
"test:mocha-parallel": "npm run mocha -- --parallel",
"test:eslint": "eslint --color --max-warnings=0 '**/*.js'",
"test:typescript": "tsc --noEmit --emitDeclarationOnly false --pretty",
"mocha": "mocha --no-timeouts --exit --color 'test/unit/*.test.js' 'test/e2e/*.test.js'"
},
"keywords": [
"javascript",
"nodejs"
],
"author": "Gil Tayar <gil@tayar.org>",
"license": "MIT",
"repository": {
"url": "https://github.com/giltayar/babel-register-esm",
"type": "git"
},
"peerDependencies": {
"@babel/core": "*"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/plugin-transform-typescript": "^7.22.15",
"@types/babel__core": "^7.20.2",
"@types/chai": "^4.3.6",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"chai": "^4.3.8",
"chai-subset": "^1.6.0",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"execa": "^8.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"typescript": "^5.2.2"
},
"dependencies": {}
}