-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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": "@mdhnpm/rgb-hex-converter",
"version": "1.2.0",
"main": "dist/index.js",
"repository": "git@github.com:mdhnpm/rgb-hex-converter.git",
"author": "mdh",
"license": "MIT",
"description": "Convert RGV to hexadecimal and vice versa",
"keywords": [
"RGV",
"hexadecimal",
"converter",
"color",
"utility"
],
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean ; tsc",
"check-types": "tsc --noEmit",
"watch:build": "tsc --watch",
"lint-js": "eslint 'src/**/*.{ts,tsx,js,jsx}' --quiet",
"fix-js": "eslint 'src/**/*.{ts,tsx,js,jsx}' --fix --quiet",
"test": "jest",
"commit": "cz"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"commitizen": "^4.2.4",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
}
}