-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
42 lines (42 loc) · 1014 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
{
"name": "colorsys",
"description": "Bidirectional conversions between different colors format like RGB, HSL, HSV and HEX",
"main": "colorsys.js",
"types": "colorsys.d.ts",
"version": "1.0.21",
"authors": [
],
"scripts": {
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"test": "node_modules/.bin/mocha",
"coverage": "nyc mocha --exit"
},
"license": "ISC",
"keywords": [
"color",
"colour",
"rgb",
"hex",
"hsv",
"hsl",
"converter"
],
"homepage": "https://github.com/netbeast/colorsys",
"moduleType": [],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1",
"nyc": "^11.6.0"
}
}