-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"main": "lib/index.js",
"files": [
"lib"
],
"name": "serverless-plugin-environment-validator",
"version": "0.0.0",
"description": "A plugin for serverless that validates the environment variables before deploys to ensure that all variables exist",
"license": "MIT",
"author": "michael.ricci@bigdatr.com",
"repository": {
"type": "git",
"url": "git@github.com:bigdatr/serverless-plugin-environment-validator.git"
},
"bugs": {
"url": "https://github.com/bigdatr/serverless-plugin-environment-validator/issues"
},
"private": false,
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"prepublish": "yarn run build",
"watch": "yarn run build -w",
"flow": "blueflag-test flow",
"lint": "blueflag-test lint",
"test-all": "yarn run lint && yarn run flow"
},
"devDependencies": {
"babel-core": "^6.23.0",
"babel-register": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-loader": "v6.4.0",
"babel-preset-blueflag": "^0.3.0",
"flow-bin": "^0.39.0",
"blueflag-test": "^0.16.0"
}
}