-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"bdsxPlugin": true,
"name": "@bdsx/backup",
"version": "1.1.0",
"description": "Plugin to back up Bdsx Bedrock Minecraft servers",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/LastSandwich/bdsx-backup.git"
},
"author": "LastSandwich",
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "prettier --write \"*.(js|ts)\"",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"adm-zip": "^0.5.3",
"ncp": "^2.0.0",
"@types/adm-zip": "^0.4.33",
"@types/ncp": "^2.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "~12.19.11",
"@types/unzipper": "^0.10.3",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"bdsx": "file:bdsx-stub",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.2.0",
"jest": "^26.6.0",
"krevent": "^2.2.0",
"moq.ts": "^7.3.4",
"prettier": "^2.2.1",
"ts-jest": "^26.4.1",
"typescript": "^4.2.2",
"wait-for-expect": "^3.0.2",
"unzipper": "^0.10.11"
}
}