-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
104 lines (104 loc) · 2.85 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "repoman",
"description": "Multi-repository source code management command-line tool",
"keywords": [
"repository",
"scm",
"git",
"svn",
"command-line"
],
"version": "1.7.0",
"homepage": "http://github.com/basti1302/repoman",
"author": "Cliffano Subagio <blah@cliffano.com> (http://blog.cliffano.com)",
"contributors": [
{
"name": "Bastian Krol",
"email": "bastian.krol@web.de"
},
{
"name": "Sterling Camden"
},
{
"name": "Stephen Steneker"
},
{
"name": "Andreas Houben"
},
"All contributors (https://github.com/basti1302/repoman/graphs/contributors)"
],
"main": "./lib/repoman",
"bin": {
"repoman": "./bin/repoman"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "http://github.com/basti1302/repoman.git"
},
"bugs": {
"url": "http://github.com/basti1302/repoman/issues"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test"
},
"scripts": {
"build": "npm run clean && npm run lint && npm run test:ci && npm run test-integration && npm run docs",
"clean": "rimraf .build",
"docs": "jsdoc --configure .jsdoc.json",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"prettier": "prettier --write 'lib/**/*.js' 'conf/**/*.json' 'test/**/*.js' 'test-integration/**/*.json'",
"site": "ncp report.html.template .build/index.html && buildbranch gh-pages .build '' --no-verify",
"test": "is-ci && npm run test:ci || npm run test:local",
"test:ci": "jest --coverage",
"test:local": "jest",
"test:watch": "jest --watch",
"test-integration": "cmdt --base-dir .build/test-integration/ run test-integration/",
"prepublishOnly": "npm run build",
"postpublish": "npm run site",
"prepare": "husky install",
"release": "standard-version"
},
"dependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@octokit/rest": "^16.43.2",
"async": "^2.6.4",
"bagofcli": "^1.1.0",
"bitbucket-api": "^0.1.0",
"cli-table": "^0.3.11",
"colors": "^1.4.0",
"dotfile": "0.0.2",
"fs.extra": "^1.3.2",
"ini": "^4.1.1",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"prompt": "^1.3.0",
"prompts": "^2.4.2",
"svn-info": "^1.2.0"
},
"devDependencies": {
"buildbranch": "^2.0.1",
"cmdt": "github:basti1302/cmdt#v1.0.2",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.0",
"is-ci-cli": "^2.2.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"mock-fs": "^5.2.0",
"ncp": "^2.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"sinon": "^17.0.0",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">= 18.0.0"
},
"license": "MIT"
}