-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "publishtogit",
"version": "2.1.0",
"description": "A command line tool for publishing a npm package to a Git repository",
"bin": {
"publishtogit": "./dist/publishtogit.js",
"publishto": "./dist/publishto.js"
},
"scripts": {
"publishtogit": "gulp build && ts-node ./src/publishtogit.ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwpeters/publishtogit.git"
},
"keywords": [
"npm",
"publish",
"git",
"package"
],
"author": "Kevin Peters <kwpeters@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwpeters/publishtogit/issues"
},
"homepage": "https://github.com/kwpeters/publishtogit#readme",
"devDependencies": {
"@types/bluebird": "3.5.20",
"@types/jasmine": "2.8.2",
"@types/lodash": "4.14.91",
"@types/node": "8.0.57",
"@types/strip-json-comments": "0.0.30",
"@types/yargs": "10.0.1",
"del": "3.0.0",
"gulp": "3.9.1",
"gulp-sourcemaps": "2.6.3",
"gulp-typescript": "3.2.3",
"jasmine": "2.8.0",
"ts-node": "4.1.0",
"tslint": "5.8.0",
"typescript": "2.9.2"
},
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "4.17.4",
"strip-json-comments": "2.0.1",
"yargs": "11.0.0"
}
}