-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.24 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.24 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
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
{
"name": "serverless-plugin-function-value",
"version": "2.0.17",
"description": "Serverless framework plugin that will automatically generate AWS CloudFormation snippets to reference a functions name, ARN or logical ID value based on the internally generated Lambda logical ID",
"keywords": [
"aws",
"cloudformation",
"serverless",
"plugin"
],
"homepage": "https://github.com/devpow112/serverless-plugin-function-value#readme",
"bugs": {
"url": "https://github.com/devpow112/serverless-plugin-function-value/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpow112/serverless-plugin-function-value.git"
},
"license": "MIT",
"author": "Devon Powell <devon.f.powell@gmail.com>",
"main": "dist/function-value-plugin.js",
"directories": {
"test": "test"
},
"files": [
"dist/**/*.js"
],
"scripts": {
"build": "rimraf dist/ && babel --verbose --out-dir dist src",
"fix": "run-s -s fix:js fix:md fix:pkg",
"fix:js": "npm run -s lint:js -- --fix",
"fix:md": "npm run -s lint:md -- --fix",
"fix:pkg": "npm pkg fix && sort-package-json",
"lint": "run-s -s lint:git lint:js lint:md",
"lint:git": "commitlint --from origin/main --to HEAD",
"lint:js": "eslint",
"lint:md": "markdownlint . --ignore-path .gitignore",
"lint:pkg": "sort-package-json --check",
"test": "run-s -s lint test:unit test:integration",
"test:integration": "npm run -s build && mocha test/integration/*.test.js",
"test:unit": "nyc mocha test/unit/*.test.js"
},
"dependencies": {
"serverless": "^3"
},
"devDependencies": {
"@babel/cli": "^7",
"@babel/register": "^7",
"@commitlint/cli": "^20",
"@devpow112/babel-config": "^1",
"@devpow112/commitlint-config": "^2",
"@devpow112/eslint-config": "^4",
"@devpow112/semantic-release-config": "^4",
"@eslint/compat": "^2",
"chai": "^4",
"eslint": "^9",
"markdownlint-cli": "^0.48",
"mocha": "^11",
"npm-run-all": "^4",
"nyc": "^18",
"rimraf": "^6",
"semantic-release": "^25",
"serverless": "^3",
"sinon": "^21",
"sort-package-json": "^3"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}