-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "ts-sofort",
"description": "Run TypeScript code on Node.js quickly using esbuild.",
"version": "0.4.2-alpha",
"license": "MIT",
"author": "FAL",
"keywords": [
"typescript",
"node"
],
"homepage": "https://github.com/fal-works/ts-sofort#readme",
"bugs": {
"url": "https://github.com/fal-works/ts-sofort/issues"
},
"files": [
"lib",
"src",
"bin",
"package-info.js"
],
"main": "lib/index.js",
"module": "lib/index.js",
"bin": {
"ts-sofort": "bin/index.js"
},
"type": "module",
"directories": {
"lib": "lib"
},
"dependencies": {
"@fal-works/esbuild-plugin-regexp-externals": "^1.1.0",
"esbuild": "^0.8.43",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/minimist": "^1.2.1",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "7.19.0",
"eslint-config-prettier": "^7.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"transcribe-json": "^0.1.0",
"typescript": "^4.1.4"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc && npm run format:lib && npm run update-info",
"preformat:lib": "eslint --fix --no-ignore lib/**/*.{js,ts}",
"format:lib": "prettier --write lib/**/*.{js,ts}",
"lint": "eslint src/**/*.ts",
"update-info": "transcribe-json package.json -o package-info.js -t mjs -f name,version,author,license",
"postupdate-info": "prettier --write package-info.js",
"test-api": "node test/run-script.js",
"test-cli": "node bin/index.js test/script.ts"
}
}