-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.64 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
{
"name": "@merryjs/cli",
"version": "1.9.2",
"description": "A cli for everything ❤️",
"license": "MIT",
"repository": "bang88/merry-cli",
"author": "bang <[email protected]> github.com/bang88 ",
"bin": {
"merry": "lib/cli.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "npm run lint && ava --verbose",
"pretest": "tsc",
"lint": "tslint --project ./tsconfig.json --fix",
"start": "tsc -w",
"prepublishOnly": "tsc",
"precommit": "pretty-quick --staged"
},
"typings": "index.d.ts",
"keywords": [
"cli-app",
"cli",
"merry",
"merryjs-cli"
],
"dependencies": {
"chalk": "^2.3.1",
"change-case": "^3.0.2",
"check-dependencies": "^1.1.0",
"colors": "^1.3.2",
"commander": "^2.18.0",
"debug": "^4.0.1",
"degit": "^2.0.2",
"diff": "^3.4.0",
"execa": "^1.0.0",
"fs-extra": "^7.0.0",
"global-dirs": "^0.1.1",
"handlebars": "^4.0.12",
"handlebars-helpers": "^0.10.0",
"inquirer": "^6.2.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"ora": "^3.0.0",
"pkg-conf": "^2.1.0",
"pkg-up": "^2.0.0",
"prettier": "^1.14.3",
"rc": "^1.2.8",
"requireg": "0.2.1",
"resolve-pkg": "^1.0.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/diff": "^3.2.2",
"@types/fs-extra": "^5.0.4",
"@types/handlebars": "^4.0.39",
"@types/inquirer": "^0.0.43",
"@types/node": "^10.11.2",
"@types/prettier": "^1.13.2",
"ava": "^0.25.0",
"husky": "^1.0.1",
"pretty-quick": "^1.7.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
}
}