UNPKG

2.45 kBJSONView Raw
1{
2 "name": "@semantic-release/npm",
3 "description": "semantic-release plugin to publish a npm package",
4 "version": "7.0.7",
5 "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
6 "ava": {
7 "files": [
8 "test/**/*.test.js"
9 ],
10 "timeout": "2m"
11 },
12 "bugs": {
13 "url": "https://github.com/semantic-release/npm/issues"
14 },
15 "contributors": [
16 "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
17 "Gregor Martynus (https://twitter.com/gr2m)"
18 ],
19 "dependencies": {
20 "@semantic-release/error": "^2.2.0",
21 "aggregate-error": "^3.0.0",
22 "execa": "^4.0.0",
23 "fs-extra": "^9.0.0",
24 "lodash": "^4.17.15",
25 "nerf-dart": "^1.0.0",
26 "normalize-url": "^5.0.0",
27 "npm": "^6.14.8",
28 "rc": "^1.2.8",
29 "read-pkg": "^5.0.0",
30 "registry-auth-token": "^4.0.0",
31 "semver": "^7.1.2",
32 "tempy": "^0.7.0"
33 },
34 "devDependencies": {
35 "ava": "^3.1.0",
36 "clear-module": "^4.0.0",
37 "codecov": "^3.0.0",
38 "delay": "^4.0.0",
39 "dockerode": "^3.0.0",
40 "get-stream": "^5.0.0",
41 "got": "^11.0.0",
42 "nyc": "^15.0.0",
43 "p-retry": "^4.0.0",
44 "semantic-release": "^17.0.0",
45 "sinon": "^9.0.0",
46 "stream-buffers": "^3.0.2",
47 "xo": "^0.33.1"
48 },
49 "engines": {
50 "node": ">=10.19"
51 },
52 "files": [
53 "lib",
54 "index.js"
55 ],
56 "homepage": "https://github.com/semantic-release/npm#readme",
57 "keywords": [
58 "npm",
59 "publish",
60 "registry",
61 "semantic-release",
62 "version"
63 ],
64 "license": "MIT",
65 "main": "index.js",
66 "nyc": {
67 "include": [
68 "lib/**/*.js",
69 "index.js"
70 ],
71 "reporter": [
72 "json",
73 "text",
74 "html"
75 ],
76 "all": true
77 },
78 "peerDependencies": {
79 "semantic-release": ">=16.0.0 <18.0.0"
80 },
81 "prettier": {
82 "printWidth": 120,
83 "trailingComma": "es5"
84 },
85 "publishConfig": {
86 "access": "public"
87 },
88 "repository": {
89 "type": "git",
90 "url": "https://github.com/semantic-release/npm.git"
91 },
92 "scripts": {
93 "codecov": "codecov -f coverage/coverage-final.json",
94 "lint": "xo",
95 "pretest": "npm run lint",
96 "semantic-release": "semantic-release",
97 "test": "nyc ava -v",
98 "test:ci": "nyc ava -v"
99 },
100 "xo": {
101 "prettier": true,
102 "space": true,
103 "rules": {
104 "unicorn/string-content": "off",
105 "unicorn/no-reduce": "off"
106 }
107 },
108 "renovate": {
109 "extends": [
110 "github>semantic-release/.github"
111 ]
112 }
113}