-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 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
56
57
58
59
60
61
62
63
{
"name": "git-root",
"version": "1.0.0",
"description": "A tool to get the git root path",
"main": "build.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc ava",
"lint": "eslint index.js test.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run babel",
"babel": "babel index.js -o build.js",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JPeer264/node-git-root.git"
},
"keywords": [
"is",
"git",
"root",
"path",
"HEAD",
"repo",
"repository",
"is-git",
"exists"
],
"author": "Jan Peer Stöcklmair",
"license": "MIT",
"bugs": {
"url": "https://github.com/JPeer264/node-git-root/issues"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"nyc": {
"exclude": [
"build.js",
"test.js"
]
},
"homepage": "https://github.com/JPeer264/node-git-root#readme",
"dependencies": {
"execa": "^0.8.0",
"is-git-repository": "^1.1.1"
},
"devDependencies": {
"ava": "^0.24.0",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"fs-extra": "^2.1.2",
"husky": "^0.14.3",
"nyc": "^11.4.1"
}
}