-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@unumux/ux-build-tools",
"version": "0.0.0-semantically-released",
"description": "Gulp-based build tools that provides, SASS/JS compiling and minification, autoprefixer, browsersync, and more",
"main": "index.js",
"scripts": {
"test": "gulp test",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish --access public && semantic-release post",
"commit": "git-cz"
},
"author": "Unum UX Team",
"license": "ISC",
"dependencies": {
"@types/merge-stream": "^1.0.28",
"@unumux/eslint-config-unumux": "^1.0.1",
"@unumux/stylelint-config-unumux": "^1.0.1",
"autoprefixer": "^7.1.1",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"bower": "^1.4.1",
"browser-sync": "^2.7.6",
"browserify": "^13.3.0",
"cssnano": "^3.4.0",
"debowerify": "^1.3.1",
"eslint": "1.10.3",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.0",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-ignore": "^2.0.1",
"gulp-load-plugins": "^1.5.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.0.1",
"gulp-remember": "^0.3.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.5",
"lodash": "^4.17.4",
"merge-stream": "^1.0.1",
"minifyify": "^7.1.0",
"minimist": "^1.2.0",
"postcss-image-inliner": "^0.2.0",
"postcss-svgo": "^2.1.1",
"request": "^2.58.0",
"require-dir": "^0.3.2",
"sass-module-importer": "^1.2.0",
"stylelint": "^6.2.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.1"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"commitizen": "^2.7.3",
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"gulp-eslint": "^2.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"isparta": "^4.0.0",
"semantic-release": "^4.3.5",
"validate-commit-message": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/unumux/ux-build-tools.git"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm test",
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
}
}
}