forked from fluid-project/fluid-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 3.13 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
{
"name": "fluid-publish",
"version": "2.4.1",
"description": "A command line tool and node module that can be used to simplify the process of publishing a module to NPM. This is particularly useful for creating development releases, e.g. nightly or continuous integration releases.",
"main": "publish.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"lint": "fluid-lint-all",
"pub": "node publish.js",
"test": "node tests/publishTests.js"
},
"bin": "./publish.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-project/fluid-publish.git"
},
"keywords": [
"npm",
"publish",
"node",
"module",
"CLI"
],
"author": "Fluid Project",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://issues.fluidproject.org/issues/?jql=project%20%3D%20FLUID%20AND%20component%20%3D%20%22Build%20Scripts%22"
},
"homepage": "http://fluidproject.org",
"dependencies": {
"es6-template-strings": "2.0.1",
"extend": "3.0.2"
},
"devDependencies": {
"eslint-config-fluid": "2.0.0",
"fluid-lint-all": "1.1.5",
"sinon": "12.0.1",
"infusion": "3.0.0-dev.20210312T233557Z.0b016a6dc.FLUID-6580"
},
"defaultOptions": {
"changesCmd": "git status -s -uno",
"checkRemoteCmd": "git ls-remote --exit-code ${remote}",
"rawTimestampCmd": "git show -s --format=%ct HEAD",
"revisionCmd": "git rev-parse --verify --short HEAD",
"branchCmd": "git rev-parse --abbrev-ref HEAD",
"otpFlag": "${command} --otp=${otp}",
"packCmd": "npm pack",
"publishCmd": "npm publish",
"publishDevCmd": "npm publish --tag ${devTag}",
"versionCmd": "npm version --no-git-tag-version ${version}",
"cleanCmd": "git checkout -- package.json",
"vcTagCmd": "git tag -a v${version} -m 'Tagging the ${version} release'",
"pushVCTagCmd": "git push ${remote} v${version}",
"devVersion": "${version}-${preRelease}.${timestamp}.${revision}",
"devName": "",
"devTag": "dev",
"remoteName": "upstream",
"moduleRoot": "",
"changesHint": "Address uncommitted changes: Commit \"git commit -a\", Stash \"git stash\" or Clean \"git reset --hard\"\n",
"checkRemoteHint": "Run \"git remote -v\" for a list of available remote repositories.\n",
"publishHint": "Ensure that you have access to publish to the registry and that the current version does not already exist.\n",
"publishDevHint": "Ensure that you have access to publish to the registry and that the current version does not already exist.\nIf the npm tag specified by --tag is recognizable as a valid semver version number, it will be rejected by npm. This is because version numbers and tags share a common namespace for npm packages.\n",
"vcTagHint": "If the tag already exists, run \"git tag -d v${version}\" to remove the existing tag.\n",
"pushVCTagHint": "If the tag already exists, run \"git push ${remote} :refs/tags/v${version} to remove the existing tag.\n"
}
}