forked from arikwex/quick-sip
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "quick-sip",
"description": "Gulp build process tasks that provide watchify and sass compilation.",
"repository": {
"type": "git",
"url": "https://github.com/vecnatechnologies/quick-sip"
},
"bugs": {
"url": "https://github.com/vecnatechnologies/quick-sip/issues"
},
"license": "MIT",
"version": "1.1.2",
"dependencies": {
"browserify": "^16.5.2",
"color-log": "0.0.2",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-dart-sass": "^1.0.2",
"gulp-jshint": "^2.1.0",
"gulp-load-plugins": "^2.0.7",
"gulp-sourcemaps": "^2.6.5",
"gulp-tap": "^2.0.0",
"gulp-uglify": "^3.0.2",
"jasmine": "^3.7.0",
"jshint": "^2.13.1",
"jshint-stylish": "^2.2.1",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"sass": "1.32.13",
"snyk": "^1.616.0",
"through2": "^3.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "jasmine",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"release": "release-it"
},
"snyk": true,
"devDependencies": {
"release-it": "^14.10.0"
},
"release-it": {
"github": {
"release": true,
"releaseName": "Release v${version}"
},
"git": {
"tagName": "${version}",
"commitMessage": "Release v${version}",
"tagAnnotation": "Release v${version}"
}
}
}