-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
53
54
55
{
"name": "web-deploy",
"version": "1.0.0",
"private": true,
"description": "web deploy",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --outfile=dist/index.js",
"test": "jest",
"test-ci": "jest --ci --reporters=default --reporters=jest-junit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamKirkland/web-deploy.git"
},
"keywords": [
"website deploy",
"continuous integration",
"sftp",
"ssh",
"rsync"
],
"author": "Sam Kirkland",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@types/command-exists": "^1.2.0",
"command-exists": "^1.2.9",
"esbuild": "^0.15.6",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^28.0.0",
"@types/node": "^18.7.9",
"jest": "^28.0.0",
"jest-junit": "^14.0.1",
"jest-junit-reporter": "^1.1.0",
"ts-jest": "^28.0.0",
"typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}