-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 3.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "rhd-frontend",
"version": "1.2.0",
"description": "Front-end assets and documentation for Red Hat Developer site",
"main": "index.js",
"engines": {
"node": ">=10.10.0"
},
"scripts": {
"start": "npm run scripts:dev",
"build": "npm run del && npm run styles && npm run scripts",
"serve": "spandx -c spandx.config.dev.js",
"test": "karma start",
"del": "del 'node_modules/@rhd' && del dist/js",
"del:styles": "del \"dist/css**\" && del 'node_modules/@rhdstyles'",
"fix:fa": "rename -n \"node_modules/@fortawesome/!(fontawesome-common-types)/index.d.ts\" index.es.d.ts",
"scripts:dev": "npm run scripts:old && npm run scripts:microsites && npm run scripts:new && npm run scripts:tsdev && npm run scripts:copy",
"scripts": "npm run scripts:old && npm run scripts:microsites && npm run scripts:new && npm run scripts:ts && npm run scripts:copy",
"scripts:copy": "copyfiles -u 2 \"node_modules/@patternfly/**/*\" \"dist/js/@patternfly\" && copyfiles -u 2 \"node_modules/@fortawesome/**/*\" \"dist/js/@fortawesome/\"",
"scripts:new": "uglifyjs-folder src/scripts/js/rhd -c -o dist/js/@rhd/rhd.min.js --source-map",
"scripts:old": "uglifyjs-folder src/scripts/js/2018 -c -o dist/js/@rhd/rhd.old.min.js --source-map",
"scripts:microsites": "uglifyjs-folder src/scripts/js/microsites -c -o dist/js/@rhd/rhd.microsites.min.js --source-map",
"scripts:ts": "tsc && copyfiles -u 4 \"dist/js/src/scripts/@rhd/**/*\" dist/js/node_modules/ && rollup -c rollup.config.js",
"scripts:tsdev": "tsc -p tsconfig.dev.json",
"semantic-release": "semantic-release",
"styles": "npm run styles:copy && npm run styles:sass && npm run styles:fonts && npm run styles:fontsStatic",
"styles:sass": "node-sass node_modules/@rhdstyles/ -o dist/css/ && node-sass node_modules/@rhdstyles/ -o dist/css-min/ --output-style compressed && postcss dist/css-min/rhd.css -o dist/css-min/rhd.min.css",
"styles:fonts": "copyfiles -u 5 \"node_modules/@patternfly/patternfly/assets/fonts/**/*\" dist/fonts/patternfly",
"styles:fontsStatic": "copyfiles -u 5 \"node_modules/@patternfly/patternfly/assets/fonts/**/*\" static/themes/custom/rhdp2/fonts/patternfly",
"styles:copy": "copyfiles -u 2 \"src/styles/**/*\" node_modules/@rhdstyles"
},
"sass": {
"includePaths": [
"./node_modules"
]
},
"repository": "https://github.com/redhat-developer/rhd-frontend.git",
"author": "<ldary@redhat.com>",
"license": "MIT",
"devDependencies": {
"@patternfly/patternfly": "2.31.11",
"@patternfly/pfe-band": "1.0.0-prerelease.24",
"@patternfly/pfe-card": "1.0.0-prerelease.24",
"@patternfly/pfe-cta": "1.0.0-prerelease.24",
"@patternfly/pfe-datetime": "1.0.0-prerelease.24",
"@patternfly/pfe-layouts": "1.0.0-prerelease.24",
"@patternfly/pfe-sass": "1.0.0-prerelease.24",
"@patternfly/pfe-tabs": "1.0.0-prerelease.24",
"@patternfly/pfelement": "1.0.0-prerelease.24",
"copyfiles": "2.1.0",
"cssnano": "4.1.10",
"del-cli": "1.1.0",
"eslint": "5.16.0",
"jasmine-core": "3.4.0",
"jsdoc": "3.6.3",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-htmlfile-reporter": "0.3.8",
"karma-jasmine": "2.0.1",
"karma-jasmine-ajax": "0.1.13",
"karma-jasmine-html-reporter": "1.4.2",
"karma-junit-reporter": "1.2.0",
"karma-spec-reporter": "0.0.32",
"node-sass": "4.12.0",
"npm": "6.10.2",
"postcss-cli": "6.1.1",
"rename-cli": "6.0.0",
"rollup": "^1.13.0",
"sassdoc": "2.7.0",
"semantic-release": "15.13.20",
"spandx": "1.0.3",
"typescript": "3.6.3",
"uglifyjs-folder": "1.5.1"
},
"dependencies": {}
}