-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "send-to-mantle",
"version": "0.2.1",
"description": "JavaScript based action to send messages to WordPress sites using Linchpin's Mantle plugin",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linchpin/sent-to-mantle.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Linchpin",
"Mantle"
],
"author": "Linchpin",
"license": "MIT",
"bugs": {
"url": "https://github.com/linchpin/sent-to-mantle/issues"
},
"homepage": "https://github.com/linchpin/sent-to-mantle#readme",
"dependencies": {
"@actions/core": "1.6.0",
"axios": "0.24.0",
"loglevel": "1.7.1"
},
"devDependencies": {
"@vercel/ncc": "0.31.1",
"eslint": "8.1.0",
"jest": "27.3.1",
"browserslist": "4.17.6"
},
"resolutions": {
"ansi-regex": "6.0.1",
"tmpl": "1.0.5",
"path-parse": "1.0.7"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
]
}