-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.1 KB
/
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
{
"name": "hex-to-rgba",
"version": "2.0.1",
"description": "Converts hexadecimal color codes to rgb()/rgba() values.",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"lint": "eslint src",
"mocha": "mocha --require @babel/register",
"prepublish": "yarn build && yarn test",
"release": "np",
"test": "yarn lint && yarn mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misund/hex-to-rgba.git"
},
"author": "Just Thomas Hiorth Misund",
"keywords": [
"colors",
"hex",
"rgba",
"css"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/misund/hex-to-rgba/issues"
},
"homepage": "https://github.com/misund/hex-to-rgba#readme",
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/register": "7.10.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-import": "2.21.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"mocha": "7.2.0",
"np": "5.2.1"
}
}