-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.09 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "templgen",
"version": "0.1.152",
"description": "Extensible template based file generator",
"keywords": [
"template",
"generate",
"generator"
],
"homepage": "https://github.com/fardjad/node-templgen",
"bugs": {
"url": "https://github.com/fardjad/node-templgen/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fardjad/node-templgen.git"
},
"license": "MIT",
"author": "Fardjad Davari <public@fardjad.com>",
"type": "module",
"exports": {
".": {
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
},
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist/index.cjs",
"dist/index.d.cts",
"dist/index.d.ts",
"dist/index.js"
],
"scripts": {
"fix": "prettier --write . && eslint --ext .js --ext .ts --fix .",
"lint": "prettier --check . && eslint --ext .js --ext .ts .",
"prepare": "tsup ./src/index.ts --format esm,cjs --dts --clean --sourcemap inline --silent",
"pretest": "tsc",
"test": "glob -c \"tsx --test --test-reporter spec\" \"src/**/*.test.ts\"",
"posttest": "npm run lint",
"test:coverage": "glob -c \"c8 --reporter=lcov tsx --test --test-reporter spec\" \"src/**/*.test.ts\""
},
"dependencies": {
"ejs": "^3.1.10"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/ejs": "^3.1.5",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-typescript": "^4.0.0",
"eslint-plugin-unicorn": "^52.0.0",
"glob": "^10.3.12",
"npm-check-updates": "^16.14.18",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.14",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"engines": {
"node": ">=18"
}
}