-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "create-esjs",
"version": "0.0.2",
"description": "CLI para crear proyectos EsJS",
"repository": {
"type": "git",
"url": "https://github.com/es-js/create-esjs"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"start": "node index.js",
"build.tsc": "tsc",
"build.bundle": "rollup -c",
"minify": "terser --compress --mangle --toplevel --output index.js -- index.js",
"build": "npm run build.tsc && npm run build.bundle && npm run minify",
"build.dev": "npm run build.tsc && npm run build.bundle",
"dev": "npm run build.dev && npm start",
"test": "jest",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier --cache \"./**/*.{ts,tsx,js,jsx}\"",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"release": "np"
},
"engines": {
"node": ">=10.10.0",
"npm": ">=6.0.0"
},
"bin": {
"create-esjs": "index.js"
},
"dependencies": {
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"@types/yauzl": "^2.10.3",
"@types/cli-spinner": "^0.2.0",
"cli-spinner": "^0.2.10",
"colorette": "^2.0.20",
"nodemon": "^3.0.2",
"prompts": "^2.4.2",
"replace-in-file": "^7.0.2",
"sisteransi": "^1.0.5",
"typescript": "^5.2.2",
"yauzl": "^2.10.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"rollup": "^4.0.0",
"https-proxy-agent": "^7.0.0",
"terser": "^5.17.1"
},
"license": "MIT",
"keywords": [
"esjs",
"create",
"crear"
]
}