-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.05 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "serverless-plugin-bind-deployment-id",
"version": "2.0.3",
"engines": {
"node": ">=12.0"
},
"description": "Serverless plugin to bind the randomly generated deployment id to custom resources",
"author": "jemonjam <jacob.e.meacham@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacob-meacham/serverless-plugin-bind-deployment-id/issues"
},
"homepage": "https://github.com/jacob-meacham/serverless-plugin-bind-deployment-id#readme",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/jacob-meacham/serverless-plugin-bind-deployment-id"
},
"keywords": [
"serverless",
"serverless applications",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com"
],
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"lint": "eslint .",
"test": "nyc ava",
"test:watch": "ava --watch",
"build:node": "cross-env BABEL_ENV=production babel src --out-dir lib",
"build": "npm run lint && npm run test && npm run build:node",
"ci:coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@ava/babel": "1.0.1",
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"@babel/register": "7.12.1",
"ava": "3.13.0",
"coveralls": "3.1.0",
"cross-env": "7.0.2",
"eslint": "7.12.1",
"eslint-config-standard": "16.0.1",
"eslint-plugin-ava": "11.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.2",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"serverless": "2.9.0"
},
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 12
}
}
]
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
}
}