forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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
{
"name": "@patternfly/react-catalog-view-extension",
"version": "4.8.107",
"description": "This library provides catalog view extensions for PatternFly 4 React.",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
"types": "dist/js/index.d.ts",
"patternfly:src": "src/",
"sideEffects": [
"*.css",
"*.scss"
],
"publishConfig": {
"access": "public",
"tag": "prerelease"
},
"repository": {
"type": "git",
"url": "https://github.com/patternfly/patternfly-react.git"
},
"keywords": [
"react",
"patternfly"
],
"author": "Red Hat",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/patternfly-react/issues"
},
"homepage": "https://github.com/patternfly/patternfly-react/blob/master/packages/react-catalog-view-extension/README.md",
"scripts": {
"generate": "yarn copy:sass && yarn build:sass",
"build:sass": "node-sass --output-style compressed --importer=./node-sass-patternfly-importer.js -o dist/css sass/react-catalog-view-extension.scss",
"copy:sass": "shx mkdir -p dist/sass && shx cp -r sass/react-catalog-view-extension/* dist/sass",
"clean": "rimraf dist"
},
"dependencies": {
"@patternfly/patternfly": "4.65.5",
"@patternfly/react-core": "^4.79.4",
"@patternfly/react-styles": "^4.7.16",
"bootstrap-sass": "^3.4.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"node-sass": "^4.14.1",
"rimraf": "^2.6.2",
"shx": "^0.3.2",
"tslib": "1.13.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}