-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 934 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
{
"name": "color-doctor",
"version": "1.1.0",
"description": "CLI to help improve colors of web front-end projects.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"color-doctor": "./dist/index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc"
},
"author": "Thiago Sciotta <[email protected]> (https://sciotta.com.br/)",
"license": "ISC",
"repository": "git://github.com/thiagog3/color-doctor.git",
"homepage": "https://github.com/thiagog3/color-doctor",
"dependencies": {
"commander": "^10.0.0",
"convert-array-to-csv": "^2.0.0",
"ejs": "^3.1.9",
"figlet": "^1.5.2",
"glob": "^9.1.0",
"hexsorter": "^1.5.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.14.5",
"semantic-release": "^23.0.0",
"typescript": "^4.9.5"
}
}