This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.67 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": "ucla-bruin-components",
"version": "1.0.0-RC2",
"description": "UCLA Bruin Web Component Library",
"license": "BSD-3-Clause",
"main": "fractal.config.js",
"author": "UCLA Strategic Communications",
"homepage": "https://bitbucket.org/uclaucomm/ucla-bruin-components#readme",
"bugs": {
"url": "https://bitbucket.org/uclaucomm/ucla-bruin-components/issues?status=new&status=open"
},
"dependencies": {
"@frctl/fractal": "^1.5.13",
"@frctl/mandelbrot": "^1.10.1",
"fractal-status-helper": "^1.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"cz-conventional-changelog": "^3.3.0",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-minify": "^3.1.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-zip": "^5.1.0",
"sass": "^1.49.7",
"semantic-release": "^18.0.1",
"stylelint": "^14.5.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"svgo": "^2.8.0"
},
"scripts": {
"start": "fractal start --sync",
"build": "fractal build",
"prepare": "gulp build && gulp production",
"commit": "npm run update \n git tag -d $(git tag -l) \nchanged=0 \ngit remote update && git status -uno | grep -q 'Your branch is behind' && changed=1\nif [ $changed = 1 ]; then\n echo \"***WARNING***\n pull latest\";\nelse\n git-cz\nfi"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}