-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 949 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
43
44
45
46
47
48
49
{
"name": "hexchange",
"version": "1.0.3",
"description": "A CLI to convert between hex and rgb values",
"repository": {
"type": "git",
"url": "https://github.com/ChengaDev/hexchange-cli.git"
},
"main": "src/index.js",
"bin": {
"hexchange": "bin/hexchange",
"@changedev/hexchange": "bin/hexchange"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"unit-test": "jest src/tests/*",
"integration-test": "jest src/integration-tests/*"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"keywords": [
"hex",
"color",
"rgb",
"cli",
"design",
"hexchange"
],
"author": "Chen Gazit",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.2.0",
"esm": "^3.2.25",
"inquirer": "^8.1.5"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"jest": "^27.2.0"
}
}