-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 KB
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
{
"name": "is-git-remote",
"version": "1.0.2",
"description": "Check if a git remote repository exists",
"main": "./dest/index.js",
"scripts": {
"pretest": "npm run lint & npm run build",
"test": "jest --coverage",
"lint": "eslint lib test",
"build": "babel lib --out-dir dest",
"prepublish": "npm run build",
"prepush": "npm test"
},
"jest": {
"globals": {
"__DEV__": true
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/aichbauer/node-is-git-remote.git"
},
"author": "Lukas Aichbauer <>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aichbauer/node-is-git-remote/issues"
},
"keywords": [
"git",
"remote",
"exists",
"is-git-remote"
],
"homepage": "https://github.com/aichbauer/node-is-git-remote#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-core": "^6.26.3",
"babel-jest": "^25.2.6",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.20.2",
"husky": "^0.13.4",
"jest": "^25.2.7",
"regenerator-runtime": "^0.13.5"
},
"dependencies": {
"execa": "^0.8.0",
"input-is": "^1.1.2"
}
}