-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "gulp-hashsum",
"version": "1.2.0",
"description": "Generate a checksum file (like shasum, md5sum, ...).",
"keywords": [
"gulp",
"gulpplugin",
"hash",
"sha1sum",
"shasum",
"md5sum",
"checksum"
],
"homepage": "https://el-tramo.be/gulp-hashsum",
"license": "MIT",
"author": "Remko Tronçon",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/remko/gulp-hashsum"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"lint": "./node_modules/.bin/eslint .",
"coverage": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha"
},
"dependencies": {
"lodash": "~4.17.5",
"mkdirp": "~0.5.0",
"plugin-error": "~1.0.1",
"slash": "~1.0.0",
"through": "~2.3.4",
"vinyl": "~2.1.0"
},
"devDependencies": {
"chai": "~4.1.2",
"eslint": "^4.19.0",
"eslint-config-remko": "^3.0.1",
"husky": "^1.0.0-rc.2",
"istanbul": "~0.4.5",
"lint-staged": "^7.0.4",
"mocha": "~5.0.4",
"mock-fs": "~4.4.2",
"prettier": "^1.12.1",
"sleep": "~5.1.1"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"],
"*.js": ["eslint --fix", "git add"]
},
"husky": { "hooks": { "pre-commit": "lint-staged" } }
}