-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.94 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
{
"name": "@idearium/cli",
"version": "5.1.0",
"description": "The Idearium cli, which makes working with our projects much easier.",
"main": "index.js",
"bin": {
"c": "./bin/c.js"
},
"scripts": {
"major-release": "npm version major && npm publish --access=public && git push --follow-tags",
"minor-release": "npm version minor && npm publish --access=public && git push --follow-tags",
"patch-release": "npm version patch && npm publish --access=public && git push --follow-tags",
"prerelease-release": "npm version prerelease && npm publish --access=public && git push --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idearium/cli.git"
},
"author": "Scott Mebberson",
"license": "MIT",
"bugs": {
"url": "https://github.com/idearium/cli/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/idearium/cli#readme",
"dependencies": {
"chalk": "4.1.2",
"clipboardy": "2.3.0",
"commander": "2.11.0",
"commander-latest": "npm:[email protected]",
"debug": "3.1.0",
"dotenv": "4.0.0",
"execa": "6.1.0",
"fs-extra": "6.0.0",
"get-value": "3.0.1",
"glob": "8.0.3",
"handlebars": "4.7.7",
"hostile": "1.3.1",
"inquirer": "5.2.0",
"lodash.merge": "4.6.2",
"mustache": "4.2.0",
"semver": "7.3.7",
"set-value": "4.1.0",
"shelljs": "0.8.5",
"sudo-prompt": "8.2.0"
},
"devDependencies": {
"@idearium/eslint-config": "4.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"prettier": "2.7.1",
"pretty-quick": "3.1.3"
}
}