-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 848 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": "@youc/colorconvert",
"version": "1.0.2",
"description": "color convert rgb2hsl,rgb2hsv,rgb2hex,hsl2rgb,hsv2rgb,hex2reg",
"main": "colorConvert.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "node index.test.js",
"build": "node rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gavin-YYC/colorconvert.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gavin-YYC/colorconvert/issues"
},
"homepage": "https://github.com/Gavin-YYC/colorconvert#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"rollup": "^1.21.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.1",
"tape": "^4.11.0"
},
"dependencies": {}
}