-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "asap-vps",
"version": "0.0.21",
"description": "Library to help setup/deploy virtual private servers.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc -d",
"test": "jest",
"test:do": "npm run test src/Initializers/DigitalOcean/DigitalOceanInitializer.spec.ts"
},
"dependencies": {
"node-ssh": "^13.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/node-ssh": "^7.0.2",
"@types/ssh2": "^1.11.19",
"dotenv": "^16.4.1",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"jest": {
"setupFiles": ["<rootDir>/jest.setup.js"],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"author": "visgotti",
"license": "MIT"
}