-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
40 lines (40 loc) · 907 Bytes
/
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
{
"name": "gulp-rename",
"version": "2.0.0",
"description": "Rename files",
"keywords": [
"gulpplugin"
],
"homepage": "https://github.com/hparra/gulp-rename",
"bugs": "https://github.com/hparra/gulp-rename/issues",
"author": {
"name": "Hector Guillermo Parra Alvarez",
"email": "[email protected]",
"url": "https://github.com/hparra"
},
"main": "./index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git://github.com/hparra/gulp-rename.git"
},
"scripts": {
"pretest": "prettier --single-quote --write index.js test/**/*.js",
"test": "mocha"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"map-stream": "^0.0.7",
"mocha": "^6.0.0",
"prettier": "^1.19.1",
"should": "^13.2.3",
"vinyl": "^2.0.0"
},
"engines": {
"node": ">=4"
},
"license": "MIT"
}