-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 972 Bytes
/
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
{
"name": "slugcopy",
"version": "1.1.0",
"description": "Slugify strings and copy to clipboard",
"main": "cli.js",
"scripts": {
"test": "ava"
},
"type": "module",
"bin": {
"slugcopy": "./cli.js"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imranpollob/slugcopy.git"
},
"keywords": [
"cli",
"slug",
"slugify",
"slugify-copy",
"slugify-and-copy",
"url",
"urlify",
"urlify-copy",
"urlify-and-copy",
"decamelize",
"url",
"safe-url",
"url-safe"
],
"author": "Imran Pollob",
"license": "MIT",
"bugs": {
"url": "https://github.com/imranpollob/slugcopy/issues"
},
"homepage": "https://github.com/imranpollob/slugcopy#readme",
"dependencies": {
"@sindresorhus/slugify": "^2.2.1",
"copy-paste": "^1.5.3",
"meow": "^13.2.0"
},
"devDependencies": {
"ava": "^6.1.3",
"execa": "^9.2.0"
}
}