-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 918 Bytes
/
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": "cli-prompts-test",
"version": "0.3.0",
"description": "Write e2e tests for CLI apps with ease",
"main": "index.js",
"scripts": {
"format:check": "prettier --check *.{md,js} test",
"format": "prettier --write *.{md,js} test",
"pretest": "npm run format:check",
"test": "jest"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jamesgeorge007/cli-prompts-test.git"
},
"keywords": [
"inquirer",
"enquirer",
"test",
"child_process",
"execa",
"cli",
"prompts"
],
"author": "James George",
"license": "GPL-3.0",
"dependencies": {
"concat-stream": "^2.0.0",
"execa": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"enquirer": "^2.3.6",
"jest": "^26.4.1",
"prettier": "^2.0.5"
}
}