-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "@bpleco/clid",
"version": "1.2.0",
"description": "CLI tool for quickly generating ID's from wellknown ID libraries.",
"main": "dist/index.js",
"files": [
"dist",
"bin"
],
"bin": {
"clid": "./bin/main.js"
},
"scripts": {
"clean": "rm -rf dist",
"dev": "npm run clean && babel --extensions \".ts\" src --out-dir=dist --watch",
"build": "npm run clean && rm -rf dist && tsc && babel --extensions \".ts\" --out-dir=dist lib",
"publish": "npm publish --access-public"
},
"repository": {
"url": "https://github.com/bpleco/clid"
},
"author": "Ben Pleco",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/helper-module-imports": "^7.14.5",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-typescript": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/slug": "^5.0.2",
"@types/uuid": "^8.3.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"keywords": [
"id",
"cli",
"clid",
"uuid",
"nanoid",
"hash",
"bson"
],
"dependencies": {
"bson": "^4.6.0",
"chalk": "^4.1.2",
"clipboardy": "^2.3.0",
"commander": "^8.3.0",
"figures": "^3.2.0",
"nanoid": "^3.1.30",
"shortid": "^2.2.16",
"slug": "^5.1.0",
"uuid": "^8.3.2"
}
}