-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.18 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.18 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
88
89
{
"name": "va-release",
"version": "1.1.19",
"description": "release publishing tool for npm and github",
"main": "index.js",
"bin": "cli.js",
"engines": {
"node": ">=10.0.0"
},
"_moduleAliases": {
"va-release": "./index.js"
},
"nyc": {
"temp-dir": "./coverage",
"report-dir": "./coverage",
"reporter": [
"lcov",
"text"
]
},
"va-release": {
"assets": "assets-test/**/*",
"files": [
{
"cwd": "templates/",
"src": [
"**/*"
],
"dest": "./"
}
],
"library": "vaRelease"
},
"scripts": {
"init": "rm -rf node_modules > /dev/null && npm i",
"update": "npm-check-updates -u && npm install && npm audit fix",
"test": "eslint .",
"fix": "eslint --fix .",
"release": "npm run release-patch",
"release-nobump": "cross-env BROWSERSLIST_ENV=modern npm test && node ./utils/run.js ./index.js --no-github",
"release-patch": "cross-env BROWSERSLIST_ENV=modern npm test && node ./utils/run.js ./index.js --version patch",
"release-minor": "cross-env BROWSERSLIST_ENV=modern npm test && node ./utils/run.js ./index.js --version minor",
"release-major": "cross-env BROWSERSLIST_ENV=modern npm test && node ./utils/run.js ./index.js --version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forceuser/va-release.git"
},
"keywords": [
"publish",
"npm",
"github"
],
"author": {
"name": "Vitaly Dub",
"url": "https://github.com/forceuser"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/forceuser/va-release/issues"
},
"homepage": "https://github.com/forceuser/va-release#readme",
"dependencies": {
"camelcase": "^5.3.1",
"colors": "^1.3.3",
"esm": "^3.2.25",
"form-data": "^2.5.1",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"isomorphic-fetch": "github:forceuser/isomorphic-fetch",
"mime": "^2.4.4",
"module-alias": "^2.2.1",
"mustache": "^3.1.0",
"parse-github-url": "^1.0.2",
"readline-promise": "^1.0.4",
"semver": "^6.3.0",
"shelljs": "^0.8.3",
"ssri": "^6.0.1",
"universal-url": "^2.0.0",
"yargs": "^14.0.0"
},
"devDependencies": {
"babel-eslint": ">=10.0.3",
"cross-env": "^5.2.1",
"deepmerge": "^4.0.0",
"eslint": ">=6.4.0",
"npm-check-updates": "^3.1.23"
}
}