-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 997 Bytes
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
{
"name": "@hughescr/serverless-plugin-git-version-json",
"version": "1.1.0",
"description": "A serverless plugin which will temporarily create a file git_version.json containing the output of `git describe --tags --dirty` and include it in the package",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/hughescr/serverless-plugin-git-version-json.git"
},
"scripts": {
"test": "eslint .",
"postversion": "git commit -m \"Bump package version to $npm_package_version\" package.json yarn.lock; git flow release start $npm_package_version; git flow release finish -m $npm_package_version $npm_package_version; git merge develop; git checkout develop"
},
"author": "Craig R. Hughes <craig.git@rungie.com>",
"license": "BSD-3-Clause-Clear",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@hughescr/eslint-config-default": "^2.8.7",
"eslint": "^8.14.0"
},
"dependencies": {
"path": "^0.12.7"
}
}