-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.23 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
63
64
65
66
67
68
69
{
"name": "styled-groove",
"version": "1.0.2",
"description": "A library that provides dynamic, component-level, styling via React props. The intent is to build atop styled-components and make styling a component easier and more robust.",
"repository": {
"type": "git",
"url": "https://github.com/coldbrewcoders/styled-groove"
},
"bugs": {
"url": "https://github.com/coldbrewcoders/styled-groove/issues"
},
"scripts": {
"build": "tsc",
"patch": "npm run lint && npm run test && npm run build && npm version patch && npm publish",
"minor": "npm run lint && npm run test && npm run build && npm version minor && npm publish",
"major": "npm run lint && npm run test && npm run build && npm version major && npm publish",
"storybook": "npm run build && start-storybook -p 6006",
"build-storybook": "npm run build && build-storybook",
"test": "jest --silent",
"test-coverage": "jest --silent --coverage",
"test-coverage-coveralls": "jest --silent --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "coldbrewcoders",
"license": "MIT",
"keywords": [
"styled-components",
"css-in-js",
"styled",
"style",
"theme",
"theming",
"react",
"styled-groove",
"groove"
],
"dependencies": {
"is-plain-object": "3.0.0",
"@types/styled-components": "4.x"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@storybook/react": "5.2.1",
"@types/jest": "24.0.18",
"@typescript-eslint/eslint-plugin": "2.3.1",
"@typescript-eslint/parser": "2.3.1",
"babel-loader": "8.0.6",
"babel-plugin-module-resolver": "3.2.0",
"coveralls": "3.0.6",
"eslint": "6.5.1",
"eslint-import-resolver-babel-module": "5.1.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-jsx": "0.1.0",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.1.2",
"jest": "24.9.0",
"react": "16.10.2",
"styled-components": "4.4.0",
"ts-jest": "24.1.0",
"typescript": "3.6.3"
},
"peerDependencies": {
"styled-components": ">= 4.x"
}
}