-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "published",
"version": "1.9.1",
"description": "📦 Opinionated NPM publish program",
"keywords": [
"npm",
"publish",
"ci-cd",
"automation",
"cli",
"npx",
"📦"
],
"author": "Fiverr SRE",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fiverr/published.git"
},
"homepage": "https://published.js.org/",
"main": "./app/index.js",
"type": "commonjs",
"bin": {
"published": "./bin/index.js"
},
"scripts": {
"start": "./bin/index.js --git-tag",
"test": "mocha '**/spec.js'",
"lint": "eslint -c .eslintrc '**/*.js'"
},
"dependencies": {
"async-execute": "^1.1.0",
"async-git": "1.13.0",
"doamrn": "^1.0.3",
"edit-package": "^1.0.3",
"index-require": "^1.0.0",
"jsnpm": "^0.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@fiverr/eslint-config-fiverr": "^3.1.3",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-plugin-log": "^1.2.3",
"import-fresh": "^3.1.0",
"mocha": "^6.2.3"
}
}