-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "@moshisora/gulp-diff-build",
"version": "2.0.2",
"description": "run tasks only if src files are changed",
"license": "MIT",
"repository": "moshisora/gulp-diff-build",
"author": {
"name": "moshisora",
"url": "http://github.com/moshisora"
},
"engines": {
"node": "12.x"
},
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"test": "cp test/src/2.js test/src/1.js && mocha test/tests.js",
"release": "standard-version",
"release:dryrun": "standard-version --dry-run"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"file",
"files",
"changed",
"newer",
"modified",
"diff"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"gulp-util": "^3.0.8",
"mkdirp": "^1.0.4",
"through2": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"concat-stream": "^2.0.0",
"dot-prop": ">=5.1.1",
"gulp": "^4.0.2",
"lodash.template": ">=4.5.0",
"minimist": "^1.2.5",
"mocha": "^8.1.0",
"rimraf": "^3.0.2",
"standard-version": "^8.0.2",
"yargs-parser": ">=18.1.2"
}
}