-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tshtml-loader",
"version": "1.4.5",
"description": "Webpack loader for tshtml template files",
"repository": {
"type": "git",
"url": "https://github.com/xorets/tshtml"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"bin": {
"tshtml-to-html": "./dist/export-template.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "tsc --project . --outDir ./dist --module commonjs --declaration --declarationMap --skipLibCheck true",
"build-watch": "tsc --project . --outDir ./dist -d -w",
"pretest": "cd ../tshtml && npm run build --if-present",
"test": "tsx ./test/jasmine.js",
"coverage": "nyc tsx ./test/jasmine.js",
"test-cli:setup": "npm link && cd test-cli && npm install && npm link tshtml-loader",
"test-cli": "cd test-cli && npm test",
"prepublishOnly": "npm run test && npm run build"
},
"author": "LOGEX Group",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^5.1.15",
"@types/lodash": "4.17.23",
"@types/node": "25.2.2",
"@types/webpack": "5.28.5",
"jasmine": "6.0.0",
"nyc": "^17.1.0",
"tsx": "^4.21.0"
},
"dependencies": {
"lodash": "^4.17.21",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tshtml": "^1.4.5",
"typescript": "^5.9.3"
},
"overrides": {
"diff": "^8.0.3"
}
}