-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.37 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": "node-git-info",
"version": "1.1.0",
"description": "Creates a git.properties file with git information of the current commit",
"files": [
"index.js",
"lib/",
"bin/",
"LICENSE",
"README.md"
],
"main": "index.js",
"bin": {
"node-git-info": "bin/node-git-info"
},
"devDependencies": {
"app-root-dir": "1.0.2",
"chai": "3.5.0",
"coveralls": "2.11.15",
"eslint": "3.10.2",
"istanbul": "0.4.5",
"mocha": "3.1.2",
"mock-fs": "3.12.1",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"tmp": "0.0.31",
"utils-fs-read-properties": "1.0.0"
},
"scripts": {
"start": "node index.js",
"test:unit": "istanbul test _mocha -- test/unit --reporter spec --recursive",
"pretest": "eslint .",
"test": "npm run test:unit --coverage",
"posttest": "npm run check-coverage",
"check-coverage": "istanbul check-coverage --statement 75 --branch 50 --function 100 --lines 75",
"coveralls": "cat ./build/coverage/lcov.info | coveralls"
},
"author": "Raúl Cruz <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "3.4.6",
"child-process-promise": "2.2.0",
"command-line-args": "3.0.3",
"moment": "2.16.0"
},
"repository": {
"type": "git",
"url": "git://github.com/rcruzper/node-git-info.git"
},
"keywords": [
"git",
"properties",
"info"
]
}