-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.62 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.62 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
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
{
"name": "bulk-npm-publish",
"version": "1.1.0",
"description": "Publish Multiple NPM packages from verdaccio storage",
"main": "src/index.ts",
"scripts": {
"prepare": "husky install",
"start": "ts-node src/index.ts --no-cache",
"start:prod": "node ./bin/bulk-npm-publish.js",
"start:debug": "nodemon %NODE_DEBUG_OPTION% --config nodemon-debug.json",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,tests}/**/*.ts\" --fix",
"test:unit": "jest .",
"test": "npm run lint && npm run test:unit",
"build": "npm run clean:some && tsc -p tsconfig.build.json",
"global": "npm i -g && bulk-npm-publish",
"clean:some": "rm -rf ./lib",
"clean:all": "rm -rf ./node_modules ./package-lock.json ./lib",
"refresh": "npm run clean:all && npm install",
"semantic-release": "semantic-release"
},
"bin": {
"bulk-npm-publish": "./bin/bulk-npm-publish.js"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/rluvaton/bulk-npm-publish.git"
},
"keywords": [
"verdaccio",
"npm",
"publish"
],
"author": "Raz Luvaton <rluvaton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rluvaton/bulk-npm-publish/issues"
},
"homepage": "https://github.com/rluvaton/bulk-npm-publish#readme",
"dependencies": {
"chalk": "^4.1.1",
"directory-tree": "^2.2.9",
"es6-promise-pool": "^2.5.0",
"is-valid-path": "^0.1.1",
"kleur": "^4.1.4",
"libnpmconfig": "^1.2.1",
"lodash.clonedeep": "^4.5.0",
"node-emoji": "^1.10.0",
"npm-registry-fetch": "^11.0.0",
"prompts": "^2.4.1",
"valid-url": "^1.0.9",
"winston": "^3.2.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/is-valid-path": "^0.1.0",
"@types/jest": "^26.0.23",
"@types/jest-when": "^2.7.3",
"@types/node-emoji": "^1.8.1",
"@types/npm-registry-fetch": "^8.0.0",
"@types/valid-url": "^1.0.3",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-extended": "^0.11.5",
"jest-when": "^3.2.1",
"memfs": "^3.2.2",
"nodemon": "^2.0.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"semantic-release": "^19.0.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tslint": "^6.0.0",
"typescript": "4.3.2"
}
}