-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jsbackup",
"version": "5.0.0",
"description": "Backup utility in pure TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/rugglcon/jsbackup"
},
"scripts": {
"start": "tsc && node ./dist/index.js",
"test": "jest --env=node",
"build": "tslint src/**/*.ts && tsc",
"ci": "npm run build && npm test",
"dev": "npm run build && sudo npm link",
"deploy": "./deploy.sh"
},
"keywords": [
"typescript",
"javascript",
"backup",
"compress",
"compression",
"tar",
"gz"
],
"author": "Connor Ruggles",
"license": "MIT",
"bin": {
"jsbackup": "./dist/index.js"
},
"dependencies": {
"adm-zip": "^0.4.14",
"chalk": "^3.0.0",
"fs-extra": "^8.1.0",
"tar": "^6.0.1",
"yargs": "^15.3.0"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/tar": "^4.0.3",
"@types/yargs": "^15.0.4",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"nodemon": "^2.0.4",
"ts-jest": "^26.1.4",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.8.3"
},
"bugs": {
"url": "https://github.com/rugglcon/jsbackup/issues"
},
"preferGlobal": true,
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}