-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "cuid-cli",
"version": "1.4.2",
"description": "cli to generate cuid's",
"main": "dist/index.js",
"author": "Can Rau <[email protected]> (https://www.canrau.com)",
"contributors": [
"Johannes Schickling <[email protected]>"
],
"repository": "https://github.com/GaiAma/cuid-cli",
"bugs": "https://github.com/GaiAma/cuid-cli/issues",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"cuid",
"id generator",
"unique id",
"cli",
"uuid",
"collision resistance"
],
"bin": {
"cuid": "dist/index.js"
},
"scripts": {
"build": "babel src --out-dir dist",
"watch": "yarn build --watch",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -u",
"github-release": "conventional-github-releaser -p angular -r 0",
"prepublishOnly": "yarn build"
},
"dependencies": {
"console-clear": "^1.1.1",
"cuid": "^2.1.8",
"yargs": "^15.0.2"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"all-contributors-cli": "^6.11.2",
"conventional-changelog-cli": "2.0.31",
"conventional-github-releaser": "3.1.3"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"files": [
"dist"
]
}