-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "aws-sam-webpack-plugin",
"version": "0.14.0",
"description": "Webpack plugin to replace the AWS SAM CLI build command",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "node_modules/rimraf/bin.js dist coverage",
"prepare": "node_modules/rimraf/bin.js dist coverage && tsc -p tsconfig.json",
"test": "node_modules/rimraf/bin.js dist coverage && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StackToolbox/aws-sam-webpack-plugin.git"
},
"keywords": [
"webpack",
"aws",
"sam",
"typescript",
"babel"
],
"author": "Richard Buggy <rich@stacktoolbox.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StackToolbox/aws-sam-webpack-plugin/issues"
},
"homepage": "https://www.stacktoolbox.com/aws-sam-webpack-plugin",
"dependencies": {
"js-yaml": "^4.1.0",
"yaml-cfn": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.2",
"@types/node": "^14.17.6",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}