-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "styled-selector",
"version": "0.1.1",
"description": "Get static CSS(-in-JS) selectors from React components",
"license": "MIT",
"repository": "diegohaz/styled-selector",
"main": "dist/index.js",
"types": "dist/ts/src",
"author": {
"name": "Haz",
"email": "[email protected]",
"url": "https://github.com/diegohaz"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext js,ts,tsx",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --emitDeclarationOnly && babel src -d dist -x .js,.ts,.tsx",
"preversion": "npm run lint && npm test && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --ext js,ts,tsx",
"git add"
]
},
"keywords": [
"styled-selector"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "^23.3.5",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/styled-components": "^4.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"emotion": "^9.2.12",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-typescript": "^0.12.0",
"husky": "^1.1.2",
"jest-cli": "^23.6.0",
"lint-staged": "^7.3.0",
"opn-cli": "^3.1.0",
"prettier": "^1.14.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-emotion": "^9.2.12",
"reuse": "^1.2.0",
"rimraf": "^2.6.2",
"standard-changelog": "^2.0.1",
"styled-components": "^4.0.2",
"typescript": "^3.1.3",
"typescript-eslint-parser": "^20.0.0"
},
"peerDependencies": {
"react": "*"
}
}