-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.12 KB
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
{
"name": "tiny-es-checker",
"version": "0.1.0",
"description": "Check whether ES syntax and APIs are used in the code.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "dist/types/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm --minify",
"build": "yarn build-fast --dts",
"test": "uvu -r sucrase/register --ignore fixture",
"prettier": "prettier --write src/*",
"lint": "eslint",
"build:types": "tsc --emitDeclarationOnly"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.2.6",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"eslint": "7.9.0",
"prettier": "2.1.1",
"tsup": "5.11.7",
"typescript": "4.0.2",
"uvu": "0.5.2"
},
"dependencies": {
"@babel/parser": "^7.22.5",
"@babel/traverse": "^7.22.5",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.1"
}
}