-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "touch-win",
"version": "1.1.0",
"description": "A tool that will allow you to use the 'touch' command on steroids to create multiple files using the terminal on any operating system.",
"main": "bin/index.js",
"bin": {
"touch-win": "./bin/index.js"
},
"scripts": {
"prepare": "npm run build",
"dev:win": ".\\node_modules\\.bin\\rimraf .bin\\ && tsc",
"dev": "./node_modules/.bin/rimraf .bin/ && tsc",
"build": "tsc",
"test": "jest"
},
"repository": "git+https://github.com/zitrocode/touch-win.git",
"keywords": [
"cli",
"args",
"touch",
"command",
"node-touch",
"touch-for-windows"
],
"author": "Oscar Ortiz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zitrocode/touch-win/issues"
},
"homepage": "https://github.com/zitrocode/touch-win#readme",
"private": false,
"dependencies": {
"chalk": "4.1.2",
"yargs": "17.5.1"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "18.7.5",
"@types/yargs": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"eslint": "8.22.0",
"jest": "28.1.3",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "28.0.8",
"typescript": "4.7.4"
}
}