forked from semantic-release/npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
{
"name": "semantic-release-npmx",
"description": "semantic-release plugin to publish a npm package that supports monorepos",
"homepage": "https://github.com/jdalrymple/semantic-release-npmx#readme",
"version": "1.1.0",
"dependencies": {
"aggregate-error": "^3.0.1",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"globby": "^11.0.0",
"lodash": "^4.17.15",
"nerf-dart": "^1.0.0",
"normalize-url": "^5.0.0",
"rc": "^1.2.8",
"read-pkg": "^5.2.0",
"registry-auth-token": "^4.1.1",
"semver": "^7.1.3",
"tempy": "^0.5.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-json": "^4.0.2",
"@semantic-release/error": "^2.2.0",
"babel-jest": "^25.1.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rollup": "^2.0.6",
"rollup-plugin-terser": "^5.3.0",
"stream-buffers": "^3.0.2"
},
"engines": {
"node": ">=12.0"
},
"files": [
"dist"
],
"keywords": [
"npm",
"publish",
"registry",
"semantic-release",
"version"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"peerDependencies": {
"semantic-release": "^17.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/semantic-release-npmx.git"
},
"scripts": {
"build": "rollup -c",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration",
"lint": "prettier --check '{src,test}/**/*.js' && eslint '{src,test}/**/*/*.js'",
"lint:fix": "prettier --write '{src,test}/**/*.js' && eslint '{src,test}/**/*/*.js' --fix"
}
}