-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.18 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.18 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@ptkdev/node-cli-boilerplate",
"displayName": "Node Command Line Interface Boilerplate",
"description": "Create your node module (library) with this friendly boilerplate",
"version": "1.0.20210330",
"main": "dist/cli/cli.js",
"types": "dist/types/module.type.d.js",
"bin": {
"node-cli-boilerplate": "dist/cli/cli.js"
},
"publishConfig": {
"access": "public"
},
"author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-translations": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://github.com/ptkdev-boilerplate/node-cli-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev-boilerplate/node-cli-boilerplate.git"
},
"bugs": {
"url": "https://github.com/ptkdev-boilerplate/node-cli-boilerplate/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "node dist/cli/cli.js",
"link": "npm link",
"unlink": "npm unlink",
"dev": "ts-node scripts/configs.ts && ts-node scripts/debug.ts --enable && rm -rf dist && nodemon --exec 'npm run build && npm run start'",
"build": "ttsc",
"release": "ts-node scripts/configs.ts && ts-node scripts/debug.ts --disable && npm run build",
"test": "jest app",
"docs": "git submodule update --recursive && markserv ./README.md",
"lint": "eslint . --cache --ext .ts,.js",
"lint-fix": "eslint . --cache --ext .ts,.js --fix",
"git-set-upstream": "git remote add upstream git@github.com:ptkdev-boilerplate/node-cli-boilerplate.git && git fetch upstream",
"git-pull-upstream": "git pull upstream main && git pull upstream beta && git pull upstream nightly",
"git-pull": "git pull --recursive",
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
"npm-publish-main": "git checkout main && npm publish",
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
"contributors-generate": "all-contributors generate",
"all-shields-generate": "all-shields-generate",
"pre-commit": "npm run contributors-generate && npm run all-shields-generate && npm run lint-fix && npm run test",
"pkg-clean": "rm -rf node_modules package-lock.json && npm install",
"pkg-update": "npm update",
"pkg-upgrade": "npx npm-check-updates -u && npm install",
"postinstall": "husky install"
},
"devDependencies": {
"@ptkdev/all-shields-cli": "^1.3.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^7.23.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsdoc": "^32.3.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"json": "^10.0.0",
"markserv": "^1.17.4",
"nodemon": "^2.0.7",
"pm2": "^4.5.5",
"shelljs": "^0.8.4",
"ts-jest": "^26.5.4",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3",
"typescript-transform-paths": "^2.2.3",
"yargs": "^16.2.0"
},
"keywords": [
"ptkdev",
"node",
"node-module",
"node-library",
"boilerplate"
],
"contributors": []
}