-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@deboxsoft/plop-generator",
"version": "1.0.37",
"description": "Plop Generator to scaffold js/ts projects",
"type": "module",
"types": "libs",
"bin": {
"cre8-gen": "bin/cli.js"
},
"exports": {
".": "./plopfile.js"
},
"scripts": {
"test": "echo Error: no test specified",
"start": "plop",
"plop": "plop",
"postinstall": "node ./bin/postInstall.js",
"bump": "bump",
"publish:dev": "pnpm publish --tag dev --no-git-checks",
"release": "pnpm bump -t -c && pnpm publish",
"release:dev": "pnpm bump prerelease && pnpm publish:dev"
},
"author": "Nurdiansyah <nurdiansyah>",
"license": "SEE LICENSE",
"dependencies": {
"@deboxsoft/module-core": "^2.6.96",
"@nurdiansyah/node-plop": "^0.32.3",
"@nurdiansyah/plop": "^3.1.6",
"dotenv": "^16.0.3",
"edit-json-file": "^1.7.0",
"minimist": "^1.2.7",
"nconf": "^0.12.0",
"nconf-yaml": "^1.0.2"
},
"devDependencies": {
"@babel/types": "^7.19.4",
"@nurdiansyah/bump": "^6.1.2",
"@nurdiansyah/eslint-config-devel": "^8.0.3",
"@types/babel__generator": "^7.6.4",
"@types/edit-json-file": "^1.7.0",
"@types/inquirer": "^9.0.2",
"@types/node": "^16.11.68",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"chalk": "^4.1.2",
"eslint": "8.22.0",
"fs": "0.0.1-security",
"inquirer": "^9.1.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tslib": "^2.4.0",
"typescript": "~4.7.4",
"vitest": "^0.27.2"
},
"files": [
"bin",
"plopfile.*",
"core",
"plugins",
"src",
"types.*",
"templates",
"CODEOWNERS"
],
"directories": {
"doc": "docs",
"lib": "lib"
},
"publishConfig": {
"access": "public"
}
}