-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
53
54
55
56
57
58
59
60
61
62
{
"name": "@react-theming/flatten",
"version": "0.1.0",
"description": "Flatten/unflatten color values from theme with nested objects",
"main": "index.js",
"scripts": {
"start": "yarn tdd",
"prepare": "package-prepare",
"dev": "nodemon --exec yarn start-storybook",
"build-storybook": "build-storybook -s public",
"test": "jest",
"tdd": "jest --watch",
"lint:fix": "eslint src --fix"
},
"keywords": [
"color",
"css",
"nested",
"extract",
"get",
"flat",
"flatten",
"theme",
"colors",
"rgb",
"rgba",
"hex",
"hsl",
"hsla",
"get colors from nested objects"
],
"author": "Oleg Proskurin https://github.com/UsulPro",
"license": "MIT",
"dependencies": {
"color": "^3.1.2",
"color-convert": "^2.0.1",
"color-parse": "^1.3.8",
"color-rgba": "^2.1.1",
"color-string": "^1.5.3",
"color-stringify": "^1.2.1",
"flat": "^5.0.0",
"is-color-stop": "^1.1.0",
"rgb-hex": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@usulpro/package-prepare": "^1.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.7",
"nodemon": "^2.0.2",
"prettier": "^2.0.2"
}
}