UNPKG

2.33 kBJSONView Raw
1{
2 "name": "@semantic-release/npm",
3 "description": "Set of semantic-release plugins to publish to a npm registry",
4 "version": "3.4.1",
5 "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
6 "bugs": {
7 "url": "https://github.com/semantic-release/npm/issues"
8 },
9 "config": {
10 "commitizen": {
11 "path": "cz-conventional-changelog"
12 }
13 },
14 "contributors": [
15 "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
16 "Gregor Martynus (https://twitter.com/gr2m)"
17 ],
18 "dependencies": {
19 "@semantic-release/error": "^2.2.0",
20 "aggregate-error": "^1.0.0",
21 "detect-indent": "^5.0.0",
22 "detect-newline": "^2.1.0",
23 "execa": "^0.10.0",
24 "fs-extra": "^7.0.0",
25 "lodash": "^4.17.4",
26 "nerf-dart": "^1.0.0",
27 "normalize-url": "^3.0.0",
28 "parse-json": "^4.0.0",
29 "read-pkg": "^4.0.0",
30 "registry-auth-token": "^3.3.1"
31 },
32 "devDependencies": {
33 "ava": "^0.25.0",
34 "clear-module": "^3.0.0",
35 "codecov": "^3.0.0",
36 "commitizen": "^2.9.6",
37 "cz-conventional-changelog": "^2.0.0",
38 "delay": "^3.0.0",
39 "dockerode": "^2.5.3",
40 "file-url": "^2.0.2",
41 "get-stream": "^3.0.0",
42 "got": "^8.0.0",
43 "nock": "^9.1.0",
44 "nyc": "^12.0.1",
45 "p-retry": "^2.0.0",
46 "semantic-release": "^15.0.0",
47 "sinon": "^6.0.0",
48 "tempy": "^0.2.1",
49 "xo": "^0.21.0"
50 },
51 "engines": {
52 "node": ">=8.3"
53 },
54 "files": [
55 "lib",
56 "index.js"
57 ],
58 "homepage": "https://github.com/semantic-release/npm#readme",
59 "keywords": [
60 "npm",
61 "publish",
62 "registry",
63 "semantic-release",
64 "version"
65 ],
66 "license": "MIT",
67 "main": "index.js",
68 "nyc": {
69 "include": [
70 "lib/**/*.js",
71 "index.js"
72 ],
73 "reporter": [
74 "json",
75 "text",
76 "html"
77 ],
78 "all": true
79 },
80 "prettier": {
81 "printWidth": 120,
82 "trailingComma": "es5"
83 },
84 "publishConfig": {
85 "access": "public",
86 "tag": "next"
87 },
88 "repository": {
89 "type": "git",
90 "url": "https://github.com/semantic-release/npm.git"
91 },
92 "scripts": {
93 "cm": "git-cz",
94 "codecov": "codecov -f coverage/coverage-final.json",
95 "lint": "xo",
96 "pretest": "npm run lint",
97 "semantic-release": "semantic-release",
98 "test": "nyc ava -v"
99 },
100 "xo": {
101 "prettier": true,
102 "space": true
103 }
104}