-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "gulp-hash-filename",
"version": "4.1.0",
"author": "Michael G Collins <intervalia@gmail.com>",
"license": "MIT",
"description": "gulp-hash-filename is a gulp plug-in that adds a hash to the filename based on the content of that file, size of that file, or the file's atime, ctime and mtime.",
"main": "./index.js",
"scripts": {
"debug-mocha": "node --inspect-brk node_modules/mocha/bin/_mocha src/*.mocha.js test/*.test.js",
"lint": "eslint index.js lib/*.js test/*.js",
"test": "npm run lint && npm run test-mocha && nyc report --reporter=text-lcov | coveralls",
"test-mocha": "nyc --nycrc-path test/.nycrc-mocha.json ./node_modules/.bin/_mocha test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/intervalia/gulp-hash-filename.git"
},
"keywords": [
"gulp",
"gulpplugin",
"JavaScript",
"hash"
],
"bugs": {
"url": "https://github.com/intervalia/gulp-hash-filename/issues"
},
"homepage": "https://github.com/intervalia/gulp-hash-filename",
"dependencies": {},
"engines": {
"node": ">= 16.0.0"
},
"devDependencies": {
"chai": "4.3.7",
"coveralls": "3.1.1",
"eslint": "8.34.0",
"mocha": "10.2.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0"
}
}