-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "@iteam/create-templates",
"author": "Andreas Lundqvist <andreas.lundqvist@iteam.se>",
"version": "1.6.1",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Iteam project templates with our preferred defaults and configurations",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --outfile=index.js",
"test": "jest --maxWorkers=50%"
},
"repository": {
"type": "git",
"url": "https://github.com/Iteam1337/templates.git"
},
"bin": {
"create-templates": "index.js"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"index.js",
"templates/*"
],
"keywords": [],
"license": "ISC",
"dependencies": {
"kolorist": "^1.5.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/prompts": "2.4.9",
"esbuild": "0.24.2",
"eslint": "9.17.0",
"jest": "29.7.0",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
}
}