-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 963 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 963 Bytes
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
{
"name": "rs-actions-rs-play-build",
"version": "1.0.0",
"description": "Build and push play apps",
"main": "index.js",
"scripts": {
"lint": "eslint **.js",
"package": "ncc build index.js -o dist",
"test": "eslint **.js && jest --coverage --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retentionscience/rs-github-action-play-build.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "RS",
"license": "MIT",
"bugs": {
"url": "https://github.com/retentionscience/rs-github-action-play-build/issues"
},
"homepage": "https://github.com/retentionscience/rs-github-action-play-build#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.4",
"aws-sdk": "^2.1408.0",
"prettier": "^2.0.5"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^7.0.0",
"jest": "^26.0.1"
}
}