forked from jaandrle/gulp-place
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "gulp-place",
"version": "1.8.7",
"description": "PHP require like concating syntax for gulp (primary for JavaScript files).",
"main": "index",
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"test": "cd ./tests && gulp && cd ../ && echo '\nTests successfully passed\n'",
"git-changelog": "node -e \"console.log('## '+require('./package.json').version);\" > CHANGELOG.md && git --no-pager log --oneline --color --pretty=\"- %s%d\" --grep=\":bug:\\|:boom:\\|:hammer:\" >> CHANGELOG.md"
},
"author": "Jan Andrle <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/jaandrle/gulp-place.git"
},
"bugs": {
"url": "https://github.com/jaandrle/gulp-place/issues"
},
"homepage": "https://github.com/jaandrle/gulp-place",
"license": "MIT",
"keywords": [
"gulp",
"import",
"bundler",
"javascript"
],
"dependencies": {
"gulp": "^4.0.2",
"gulp-replace": ">=1.1.3"
},
"devDependencies": {
"jshint": "^2.10.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jshintConfig": {
"esversion": 6,
"node": "true",
"undef": "true",
"latedef": "true",
"maxparams": 6,
"maxdepth": 2,
"maxcomplexity": 16,
"globals": {
"gulp_place": false
}
}
}