-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "rollback",
"version": "0.2.16",
"description": "Rollback a directory to a prior snapshot",
"main": "build/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "jest --coverage && npm run tslint",
"watch": "jest --watch",
"build": "tsc",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs": "typedoc --theme markdown --out docs --readme none",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"version": "npm run build && npm run docs && conventional-changelog -p eslint -i CHANGELOG.md -s -r 0 && git add -A",
"bump": "npm version --unsafe-perm $(conventional-recommended-bump -p eslint)",
"preinstall": "npx npm-force-resolutions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustinLivi/rollback.git"
},
"keywords": [
"snapshot",
"fs",
"rollback",
"restore",
"temp",
"undo"
],
"author": "Justin Livi",
"license": "MIT",
"bugs": {
"url": "https://github.com/JustinLivi/rollback/issues"
},
"homepage": "https://github.com/JustinLivi/rollback#readme",
"resolutions": {
"yargs-parser": "18.1.3"
},
"dependencies": {
"@types/fs-extra": "8.1.1",
"@types/node": "12.19.8",
"@types/tmp": "0.2.0",
"fs-extra": "8.1.0",
"graceful-fs": "^4.2.4",
"tmp-promise": "2.1.1"
},
"devDependencies": {
"@types/jest": "25.1.4",
"@types/mock-fs": "4.10.0",
"conventional-changelog-cli": "2.0.23",
"conventional-changelog-eslint": "3.0.4",
"conventional-recommended-bump": "6.0.5",
"coveralls": "3.0.6",
"jest": "^25.5.4",
"jest-extended": "0.11.5",
"mock-fs": "4.11.0",
"prettier": "1.19.1",
"ts-jest": "^25.4.0",
"tslint": "5.13.0",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typedoc": "0.16.11",
"typedoc-plugin-markdown": "2.2.17",
"typescript": "3.3.3333"
}
}