-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1012 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1012 Bytes
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
{
"name": "git-to-json",
"version": "2.1.4",
"description": "A simple Node module for retrieving and writing git commit info to JSON.",
"bin": {
"git-to-json": "./bin/git-to-json.js"
},
"scripts": {
"test": "jasmine || exit 0",
"lint": "eslint ./bin/*.js ./lib/*.js ./spec/*.js || exit 0"
},
"keywords": [
"git",
"node",
"nodejs",
"commit"
],
"author": "Darren Klein",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/darrenklein/git-to-json.git"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jasmine": "^2.9.2",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^5.0.0",
"jasmine": "^3.0.0"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"path": "^0.12.7"
}
}