-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 960 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
41
42
43
44
45
46
{
"name": "gulp-file-to-json",
"version": "1.1.3",
"description": "Gulp plugin to convert a file and its MD5 hash value into a JSON representation.",
"main": "index.js",
"scripts": {
"test": "mocha -R spec ./test/*.js",
"jshint": "jshint index.js",
"jscs": "jscs index.js"
},
"pre-commit": [
"test",
"jshint",
"jscs"
],
"repository": {
"type": "git",
"url": "https://github.com/vast-engineering/gulp-file-to-json.git"
},
"keywords": [
"gulp",
"gulpplugin",
"css",
"fonts",
"json",
"localstorage",
"md5"
],
"author": "Vast",
"license": "MIT",
"devDependencies": {
"assert": "^1.3.0",
"event-stream": "^3.3.2",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"jscs": "^3.0.7",
"jshint": "^2.9.1",
"mocha": "^3.1.2",
"pre-commit": "^1.1.2",
"vinyl": "^2.0.0"
},
"dependencies": {
"gulp-util": "^3.0.7",
"through2": "^2.0.1"
}
}