-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 824 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 824 Bytes
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
{
"name": "cli-testing-tool",
"version": "0.3.0",
"description": "",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"eslint": "eslint cli-examples lib",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier --write cli-examples lib",
"prepare": "husky install",
"prepublishOnly": "npm run eslint && npm test"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^7.0.2",
"jest": "^27.2.0",
"prettier": "^2.0.5",
"prompts": "^2.4.1"
},
"dependencies": {
"node-ansiparser": "^2.2.0",
"node-ansiterminal": "^0.2.1-beta"
}
}