-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.03 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.03 KB
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
{
"name": "xp-deploy",
"version": "1.3.1",
"main": "lib/src/main.js",
"type": "module",
"description": "Universal automation and deployment tool written in JavaScript.",
"keywords": [
"automation",
"deployment",
"deploy",
"ssh"
],
"repository": {
"type": "git",
"url": "https://github.com/qurt/xp-deploy.git"
},
"author": "Qurt",
"license": "MIT",
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "echo 'TODO: add tests!'",
"build": "tsc",
"dev": "tsc -w"
},
"bin": {
"xpd": "./bin/xpd.js"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"babel-jest": "^29.4.3",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}