This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.65 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
{
"name": "@lsipii/commandline-helpers",
"version": "1.0.2",
"description": "A simple command line utilities library for nodejs apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "cd scripts && npx ts-node test-arguments.ts 'test case'",
"lint": "prettier --write 'src/**/*.ts'",
"clean": "rimraf dist/*",
"build": "npm run clean && npm run build-with-babel && npm run build-type-declarations",
"build-with-babel": "babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files --extensions '.ts'",
"build-type-declarations": "tsc --declaration --outDir dist/ --emitDeclarationOnly --declarationMap",
"make-package": "npm run build && npm test && node dist/packageSetup.cjs",
"publish-package": "cd dist && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lsipii/commandline-helpers.git"
},
"keywords": [
"typescript",
"nodejs",
"utils",
"commandline"
],
"author": "Lassi Piironen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lsipii/commandline-helpers/issues"
},
"homepage": "https://github.com/lsipii/commandline-helpers#readme",
"dependencies": {
"@lsipii/logging-helpers": "^1.0.0",
"@lsipii/transformation-helpers": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/node": "^18.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.3"
}
}