-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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": "MQL-Compile-Action",
"version": "1.0.0",
"description": "Compiles MQL programs",
"main": "dist/index.js",
"scripts": {
"build": "ncc build",
"format": "prettier --write '*.js' dist/index.js && eslint --fix *.js dist/index.js",
"format-check": "eslint *.js",
"lint": "eslint *.js",
"package": "ncc build index.js -o dist",
"release": "npm run package && npm run format",
"test": "eslint *.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FX31337/MQL-Compile-Action.git"
},
"keywords": [
"github",
"actions",
"mql"
],
"author": "kenorb",
"license": "MIT",
"bugs": {
"url": "https://github.com/FX31337/MQL-Compile-Action/issues"
},
"homepage": "https://github.com/FX31337/MQL-Compile-Action/issues",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"encoding": "^0.1.13",
"eslint-plugin-jest": "^23.20.0",
"fs-extra": "^11.0.0",
"glob": "^7.1.6",
"is-docker": "^2.1.1",
"is-wsl": "^2.2.0",
"prettier": "^2.2.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36",
"eslint": "^6.3.0",
"jest": "^29.5.0",
"node-stream-zip": "^1.12.0",
"q": "^1.5.1"
}
}