-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "wtcolor",
"version": "0.0.8",
"description": "A tool that can change color theme of Windows Terminal conveniently and easily!",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"lint": "./node_modules/.bin/eslint ./src/**",
"format": "./node_modules/.bin/prettier --config .prettierrc --write ./{src,test}/**/*.js",
"test": "nyc --es-modules=false ./node_modules/.bin/mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": "Crawler995",
"license": "MIT",
"homepage": "https://github.com/Crawler995/wtcolor",
"keywords": [
"Windows Terminal",
"color",
"theme"
],
"bin": {
"wtcolor": "./src/index.js"
},
"dependencies": {
"axios": "^0.19.2",
"clui": "^0.3.6",
"comment-json": "^3.0.2",
"inquirer": "^7.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.0",
"mock-fs": "^4.11.0",
"nock": "^12.0.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"sinon": "^9.0.1"
}
}