-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
53
54
55
{
"name": "gulp-resume",
"version": "0.4.6",
"description": "gulp plugin to generate resumes from jsonresume.org",
"main": "index.js",
"scripts": {
"test": "mocha && eslint .",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/mattberther/gulp-resume.git"
},
"keywords": [
"gulpplugin",
"resume",
"json",
"jsonresume"
],
"author": {
"name": "Matt Berther",
"email": "[email protected]",
"url": "https://matt.berther.io"
},
"engines": {
"node": ">= 8"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mattberther/gulp-resume/issues"
},
"homepage": "https://github.com/mattberther/gulp-resume",
"devDependencies": {
"chai": "3.5.0",
"chai-string": "1.2.0",
"eslint": "^5.16.0",
"eslint-config-xo": "^0.26.0",
"event-stream": "^3.3.5",
"mocha": "^10.2.0",
"vinyl": "^1.1.1"
},
"dependencies": {
"plugin-error": "^1.0.0",
"request": "^2.88.2",
"through2": "^3.0.2"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"node": true,
"mocha": true
}
}
}