-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 1.9 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
73
74
75
76
77
78
79
80
81
{
"name": "git-snapshot",
"version": "2.2.2",
"description": "Take a snapshot of the directory - like 'git subtree split --squash'",
"repository": {
"type": "git",
"url": "https://github.com/mob-sakai/git-snapshot.git"
},
"keywords": [
"module",
"package",
"cli",
"git",
"subtree",
"split",
"snapshot"
],
"author": "mob-sakai <[email protected]> (https://github.com/mob-sakai)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mob-sakai/git-snapshot/issues"
},
"homepage": "https://github.com/mob-sakai/git-snapshot#readme",
"bin": {
"git-snapshot": "bin/cli.js"
},
"scripts": {
"lint": "xo --fix",
"test": "ava --verbose",
"release": "semantic-release"
},
"engines": {
"node": ">=8"
},
"files": [
"bin",
"lib",
"index.js"
],
"dependencies": {
"chalk": "^2.4.2",
"debug": "^4.0.0",
"execa": "^2.0.2",
"fs-extra": "^8.0.0",
"ignore": "^5.1.4",
"tempy": "^0.3.0",
"yargs": "^14.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "7.0.0-beta.4",
"@semantic-release/error": "^2.2.0",
"@semantic-release/git": "^7.1.0-beta.7",
"@semantic-release/github": "5.6.0-beta.1",
"@semantic-release/npm": "^6.0.0-bata.2",
"@semantic-release/release-notes-generator": "^7.1.2",
"ava": "^2.4.0",
"prettier": "^1.18.2",
"semantic-release": "^16.0.0-beta.26",
"xo": "^0.25.3"
},
"prettier": {
"printWidth": 120,
"bracketSpacing": false,
"singleQuote": true
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"xo": {
"prettier": true,
"space": true
}
}