This repository was archived by the owner on Jan 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.33 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
38
39
40
41
42
{
"name": "tmlb",
"version": "0.1.2",
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": "git@github.com:DiscreteTom/tmlb.git",
"author": "DiscreteTom <discrete_tom@outlook.com>",
"license": "MIT",
"scripts": {
"build:readme": "mdcg README.src.md README.md",
"build": "tsc --build && esbuild src/index.ts --bundle --minify --global-name=tmlb --outfile=dist/tmlb.min.js",
"clean": "tsc --build --clean",
"test": "jest",
"test:coverage": "jest --coverage",
"format": "prettier --write --end-of-line auto \"src/**/*.ts\"",
"format:check": "prettier --check --end-of-line auto \"src/**/*.ts\"",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"prepublishOnly": "yarn format:check && yarn lint && yarn test:coverage && yarn clean && yarn build"
},
"devDependencies": {
"@discretetom/r-compose": "^0.2.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "^0.19.10",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"mdcg": "^0.1.3",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"bugs": {
"url": "https://github.com/DiscreteTom/tmlb/issues"
},
"keywords": [
"tmLanguage"
]
}