-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "bootstrap-styled-components",
"description": "The bootstrap components made with styled-components",
"private": true,
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"pub": "lerna publish"
},
"workspaces": [
"packages/*"
],
"license": "MIT",
"author": "Oleg Akbarov <olegakbarov@gmail.com>",
"keywords": [
"components",
"react",
"react-component",
"ui",
"styled-components",
"bootstrap",
"presentational",
"stateless",
"functional"
],
"repository": {
"type": "git",
"url": "git+https://github.com/olegakbarov/bootstrap-styled-components.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bugs": {
"url": "https://github.com/olegakbarov/bootstrap-styled-components/issues"
},
"homepage": "https://github.com/olegakbarov/bootstrap-styled-components",
"devDependencies": {
"jest-styled-components": "^6.3.1",
"lerna": "^3.16.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"styled-components": "^4.1.3",
"typescript": "^3.7.0-dev.20191018"
},
"dependencies": {
"@types/react": "^16.9.2",
"@types/styled-components": "^4.1.19"
}
}