-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "tagged-git-commits",
"version": "1.0.0",
"description": "A tool to return tagged git commits",
"main": "build.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc ava",
"lint": "eslint index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run babel",
"babel": "babel index.js -o build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aichbauer/node-tagged-git-commits.git"
},
"keywords": [
"git",
"commit",
"commits",
"tagged",
"tagged-git-commits"
],
"author": "Lukas Aichbauer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aichbauer/node-tagged-git-commits/issues"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"homepage": "https://github.com/aichbauer/node-tagged-git-commits#readme",
"dependencies": {
"execa": "^0.6.1",
"fs-extra": "^3.0.1",
"is-git-repository": "^1.1.1",
"path-is-absolute": "^1.0.1"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.2.2",
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.2",
"nyc": "^10.1.2"
}
}