-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
{
"name": "hex2rgbcolor",
"version": "2.0.1",
"description": "Javascript plugin that allows conversions between RGB and Hexadecimal",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grvty-labs/Hex2RgbColor.git"
},
"keywords": [
"hex",
"rgb",
"color",
"convert",
"hexadecimal",
"component"
],
"author": "Yamil Díaz Aguirre <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grvty-labs/Hex2RgbColor/issues"
},
"homepage": "https://github.com/grvty-labs/Hex2RgbColor#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"flow-bin": "^0.62.0",
"jest": "^22.4.4",
"react-test-renderer": "^16.3.2",
"regenerator-runtime": "^0.11.1"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(react-native|redux-persist)/)"
]
},
"dependencies": {
}
}