-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 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
{
"name": "styled-reboot",
"version": "5.0.0",
"description": "Bootstrap 4 reboot.css for styled-components",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"typings": "index.d.ts",
"scripts": {
"lint:css": "stylelint './src/**/*.ts'",
"lint:ts": "tslint --format codeFrame --project tsconfig.json 'src/**/*.{ts,tsx}'",
"lint": "npm run lint:css && npm run lint:ts",
"test": "npm run lint",
"build": "tsc",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/alexruzzarin/styled-reboot.git"
},
"keywords": [
"styled",
"components",
"css",
"reboot",
"reboot.css",
"bootstrap"
],
"author": {
"name": "Alex Ruzzarin",
"url": "https://github.com/alexruzzarin/"
},
"contributors": [
{
"name": "Mikkel Høgh",
"url": "https://github.com/mikl/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexruzzarin/styled-reboot/issues"
},
"homepage": "https://github.com/alexruzzarin/styled-reboot#readme",
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/styled-components": "5.1.9",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"prettier": "2.3.0",
"react": "17.0.2",
"semantic-release": "17.4.2",
"styled-components": "5.3.0",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "4.1.5"
},
"peerDependencies": {
"styled-components": ">=4"
}
}