-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 836 Bytes
/
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
{
"name": "serverless-plugin-revision",
"version": "0.5.6",
"engines": {
"node": ">=4.0"
},
"description": "Revisioning plugin for Serverless. Adds a Revision header with the version from root package.json and latest git short commit hash",
"author": "Karl Viiburg <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DHNCarlos/serverless-plugin-revision"
},
"keywords": [
"serverless plugin versioning",
"serverless plugin revision",
"serverless plugins"
],
"main": "index.js",
"bin": {},
"scripts": {
"test": "mocha tests/all"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5"
},
"dependencies": {
"app-root-path": "^1.0.0",
"bluebird": "^3.0.6",
"git-rev": "^0.2.1",
"lodash": "^3.5.0"
}
}