-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "setup-drupal",
"version": "1.0.0",
"description": "GitHub Action to setup Drupal for testing an extension",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "ncc build src/index.js --license licenses.txt && git add dist/",
"prepare": "husky install",
"debug:run": "npm run build && act -P ubuntu-latest=shivammathur/node:latest --job run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluehorndigital/setup-drupal.git"
},
"keywords": [
"actions",
"drupal",
"setup"
],
"author": "Bluehorn Digital <hello@bluehorn.digital>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bluehorndigital/setup-drupal/issues"
},
"homepage": "https://github.com/bluehorndigital/setup-drupal#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"husky": "^5.1.3",
"jest": "^26.6.3"
}
}