-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "@gmrchk/cli-testing-library",
"version": "0.1.2",
"description": "Small but powerful library for testing CLI the way it is used by people.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "npm run watch:lib",
"build:cleanup": "rm -rf lib && rm -rf dist",
"build:lib": "tsc --project tsconfig.build.json",
"build": "npm run build:cleanup && npm run build:lib",
"build:ci": "npm run build",
"prepare": "npm run build:lib",
"watch:lib": "tsc --watch --project tsconfig.build.json",
"test": "jest test"
},
"author": "Georgy Marchuk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gmrchk/cli-testing-library.git"
},
"dependencies": {
"keycode": "^2.2.1"
},
"peerDependencies": {},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/prompts": "^2.0.14",
"@types/yargs": "^17.0.8",
"concurrently": "^6.3.0",
"jest": "^27.4.7",
"prettier": "^2.3.2",
"prompts": "^2.4.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"yargs": "^17.3.1"
}
}