-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "serverless-plugin-scripts",
"version": "1.0.2",
"description": "Add scripting capabilities to the Serverless Framework",
"keywords": [
"serverless",
"plugin",
"script",
"shell",
"customize",
"command",
"hook",
"CLI"
],
"author": "Manuel Vila <mvila@3base.com>",
"license": "MIT",
"reveal": true,
"files": [
"lib"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/mvila/serverless-plugin-scripts"
},
"scripts": {
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"release": "npm run compile && npm test && npm version $npm_config_release_type && git push --follow-tags && npm publish",
"release-patch": "npm run release --release-type=patch",
"release-minor": "npm run release --release-type=minor",
"release-major": "npm run release --release-type=major",
"test": "echo \"Warning: no test specified\" && exit 0"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
}
}