-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
70
71
{
"name": "styled-flex-component",
"version": "3.0.5",
"license": "MIT",
"description": "Flex Element for not writing any more custom flex styles because fuck that",
"keywords": [
"flex",
"flexbox",
"styled",
"react",
"css",
"css-in-js",
"styled-components"
],
"repository": "github:SaraVieira/styled-flex-component",
"main": "dist/styled-flex-component.umd.js",
"jsnext:main": "dist/styled-flex-component.es.js",
"module": "dist/styled-flex-component.es.js",
"entry": "src/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --cache --fix",
"pretest": "NODE_ENV=test bup",
"format": "prettier --write '**/*.{js,md,json}'",
"posttest": "npm run format",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "npm run test:jest && npm run lint",
"build": "NODE_ENV=development bup",
"prepublish": "NODE_ENV=production bup"
},
"dependencies": {
"styled-is": "^1.3.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.0"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-env": "^1.7.0",
"bup": "^4.1.6",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1"
},
"lint-staged": {
"**.{js,md}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}