-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "casex-template",
"type": "module",
"version": "4.0.1",
"description": "Simple, self expressive template engine for scaffolding files based on casex",
"main": "dist/casex-template.js",
"types": "dist/casex-template.d.ts",
"repository": "https://github.com/pedsmoreira/casex-template",
"author": "Pedro Moreira <code@pedrosm.ccom>",
"license": "MIT",
"keywords": [
"casex",
"template engine",
"scaffolding"
],
"files": [
"dist"
],
"scripts": {
"build": "tsup --entry.casex-template src/casex-template.ts --dts --format esm --minify",
"build:watch": "yarn build --watch",
"typecheck": "tsc --noEmit src/casex-template.ts",
"format": "prettier ./src/**/* --write; prettier ./*.md --write",
"test": "vitest",
"postversion": "git push && git push --tags",
"ci:test": "yarn build && yarn test",
"preversion": "yarn build && yarn test",
"version": "yarn build && git add package.json"
},
"devDependencies": {
"@types/pluralize": "^0.0.29",
"prettier": "^3.2.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.28.4"
},
"dependencies": {
"casex": "^4.0.1",
"pluralize": "^8.0.0"
}
}