-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.23 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
{
"name": "@ialopezg/cli",
"version": "1.0.3",
"description": "CLI tools for Node.js",
"private": false,
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"prebuild": "tsc --version && rimraf lib && npm run lint:fix",
"build": "tsc -p tsconfig.prod.json",
"build:live": "nodemon -e ts --watch src index.js",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "prettier --check \"./src/**/*.ts\"",
"lint:fix": "prettier --write \"./src/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"start": "npm run build:live",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ialopezg/node-cli.git"
},
"keywords": [
"console",
"color",
"colors",
"style",
"console styled"
],
"author": "Isidro A. Lopez G. <me@ialopezg.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ialopezg/node-cli/issues"
},
"homepage": "https://github.com/ialopezg/node-cli#readme",
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"conventional-changelog-angular": "^7.0.0",
"conventional-changelog-cli": "^4.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.52.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"rollup": "^4.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"files": [
"lib",
"CHANGELOG.md"
],
"engines": {
"node": ">=8"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/lib"
]
}
}