-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "gtni",
"version": "0.0.0-development",
"description": "Install your all npm dependencies recursively with gtni while you are doing git clone, fetch or pull",
"preferGlobal": true,
"bin": {
"gtni": "dist/index.js"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -fr dist/",
"test": "tape -r @babel/register tests/**/*.js | ./node_modules/.bin/tap-spec",
"code:quality": "npm run lint && npm run test",
"lint": "eslint . && echo 'No lint error found'",
"lint:fix": "eslint . --fix",
"commit": "git-cz",
"compile": "babel --minified --no-comments -d dist/ src/",
"preinstall": "echo '\r\nThis package depends on git. Please install, if you do not have it yet\r\n'",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"author": "Nur Rony<pro.nmrony@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"async-each": "^1.0.1",
"async-waterfall": "^0.1.5",
"git-url-parse": "^11.1.1",
"lodash.map": "^4.6.0",
"lodash.omit": "^4.5.0",
"ora": "^4.0.3",
"path-exists": "^3.0.0",
"shelljs": "^0.8.3",
"yargs": "7.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.11.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"husky": "^1.3.1",
"semantic-release": "^15.13.2",
"tap-spec": "^5.0.0",
"tape": "^4.9.2",
"travis-deploy-once": "^5.0.11"
},
"repository": {
"type": "git",
"url": "https://github.com/nmrony/gtni.git"
},
"bugs": {
"url": "https://github.com/nmrony/gtni/issues",
"email": "pro.nmrony@gmail.com"
},
"homepage": "https://nmrony.github.io/gtni",
"keywords": [
"git",
"npm",
"git push",
"git fetch",
"git pull",
"npm install"
]
}