-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "esrun",
"version": "3.2.27",
"type": "module",
"description": "Execute directly your Typescript files using Esbuild",
"main": "./index.js",
"exports": {
".": "./index.js",
"./*": "./*.js"
},
"bin": {
"esrun": "./bin.js"
},
"scripts": {
"lint": "tsc --noEmit",
"build": "node scripts/build.js",
"deploy": "node scripts/deploy.js",
"dev": "./package/bin.js --watch test --watch coco",
"test": "./package/bin.js test --watch coco",
"test:tsconfig": "./package/bin.js --tsconfig test/tsconfig.json test --watch coco",
"test:node-cli": "./package/bin.js --node-max-old-space-size=4096 test --watch coco",
"test:readline": "./package/bin.js test/readline",
"test:watch": "./package/bin.js --watch=test/*.json test --watch coco",
"test:watch:preserve": "./package/bin.js --preserveConsole --watch=test/*.json test --watch coco",
"test:inspect": "./package/bin.js --inspect test --watch coco",
"test:watch:inspect": "./package/bin.js --watch --inspect test --watch coco",
"test:server": "./package/bin.js --watch test/server"
},
"engines": {
"node": ">=14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-loukoum/esrun.git"
},
"keywords": [
"esbuild",
"run",
"execute",
"typescript"
],
"author": "Lepzulnag",
"license": "ISC",
"bugs": {
"url": "https://github.com/digital-loukoum/esrun/issues"
},
"homepage": "https://github.com/digital-loukoum/esrun#readme",
"dependencies": {
"@digitak/grubber": "^3.1.4",
"chokidar": "^3.5.1",
"esbuild": "^0.17.4"
},
"devDependencies": {
"@digitak/bunker": "^3.2.1",
"@types/node": "^14.14.20",
"cute-print": "^1.0.4",
"fartest": "^2.1.6",
"fsevents": "^2.3.2",
"polka": "^0.5.2",
"typescript": "^4.7.0-dev.20220421"
}
}