-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "create-iles-module",
"version": "0.9.6",
"description": "An easy way to create an îles module",
"type": "module",
"bin": {
"create-iles-module": "outfile.cjs"
},
"files": [
"outfile.cjs",
"template"
],
"engines": {
"node": "^14.0.0 || >= 16.0.0"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write .",
"build": "esbuild --bundle index.js --format=cjs --platform=node --outfile=outfile.cjs",
"snapshot": "node snapshot.js",
"pretest": "run-s build snapshot",
"prepublishOnly": "run-s build snapshot",
"release": "npx bumpp --commit --tag --push && pnpm publish --tag next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElMassimo/create-iles-module.git"
},
"keywords": [],
"authors": [
"Máximo Mussini <maximomussini@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ElMassimo/create-iles-module/issues"
},
"homepage": "https://github.com/ElMassimo/create-iles-module#readme",
"devDependencies": {
"@types/node": "16",
"esbuild": "^0.12.29",
"husky": "^7.0.2",
"kolorist": "^1.5.0",
"lint-staged": "^11.2.0",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prompts": "^2.4.1"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"prettier --write"
]
}
}