-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "sls-action",
"version": "0.1.0",
"private": true,
"description": "GitHub action for Serverless Framework.",
"main": "lib/main.js",
"scripts": {
"build": "npx webpack",
"compile": "npx tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless/azure-build-task.git"
},
"keywords": [
"Serverless",
"Serverless Framework",
"GitHub Action"
],
"author": "Microsoft - Commercial Software Engineering (CSE)",
"contributors": [
{
"name": "Shawn Gaul",
"email": "shgaul@microsoft.com"
},
{
"name": "Lucas Huet-Hudson",
"email": "lucashh@microsoft.com"
},
{
"name": "P.J. Little",
"email": "pelittle@microsoft.com"
}
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/exec": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}