-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 2.34 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
{
"name": "honeycomb-web-toolkit",
"version": "14.3.17",
"repository": {
"type": "git",
"url": "https://github.com/red-gate/honeycomb-web-toolkit"
},
"license": "Apache-2.0",
"scripts": {
"clean": "node scripts/clean.js",
"css:sass": "node scripts/css/sass.js",
"css:autoprefixer": "postcss dist/**/*.css --no-map true --use autoprefixer --config scripts/css --dir dist",
"css:cheatsheet": "node scripts/css/docs.js",
"css:vendor": "node scripts/css/vendors.js",
"css": "npm run css:sass && npm run css:autoprefixer && npm run css:vendor && npm run css:cheatsheet",
"css:zuora": "npm run css:sass zuora && npm run css:autoprefixer && npm run css:vendor && npm run css:cheatsheet",
"css:confluence": "npm run css:sass confluence && npm run css:autoprefixer && npm run css:vendor && npm run css:cheatsheet",
"fonts": "node scripts/fonts.js",
"images": "node scripts/images.js",
"js:bundle": "node scripts/javascript/bundle.js",
"js:minify": "node scripts/javascript/minify.js",
"js:lint": "node node_modules/eslint/bin/eslint src/**/*.js",
"js:vendor": "node scripts/javascript/vendors.js",
"js": "npm run js:bundle && npm run js:minify && npm run js:vendor",
"js:confluence": "npm run js:bundle confluence && npm run js:minify && npm run js:vendor",
"teamcity": "node scripts/teamcity.js",
"build": "npm run clean && npm run css && npm run fonts && npm run images && npm run js",
"build:zuora": "npm run clean && npm run css:zuora && npm run fonts && npm run images && npm run js",
"build:confluence": "npm run clean && npm run css:confluence && npm run fonts && npm run images && npm run js:confluence"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/preset-env": "7.22.5",
"autoprefixer": "10.4.14",
"babelify": "10.0.0",
"browserify": "17.0.0",
"eslint": "8.42.0",
"fs-extra": "11.1.1",
"glob": "10.2.7",
"handlebars": "4.7.7",
"jquery": "3.7.0",
"postcss": "8.4.24",
"postcss-cli": "10.1.0",
"request": "2.88.2",
"sass": "1.63.3",
"uglify-js": "3.17.4",
"zip-a-folder": "1.1.6"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"project": {
"src": "src",
"dist": "dist"
}
}