-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
45 lines (45 loc) · 1.19 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.15.0",
"description": "Webpack plugin to replace the AWS SAM CLI build command",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist coverage",
"prepare": "rimraf dist coverage && tsc -p tsconfig.json",
"test": "rimraf 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 <[email protected]>",
"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.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}