-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "matterhorn-cli",
"version": "0.2.0",
"description": "CLI to accompany Matterhorn Node.js boilerplate project",
"bin": {
"matterhorn-cli": "bin/cli.js"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "eslint 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ethan-Arrowood/matterhorn-cli.git"
},
"keywords": [
"nodejs",
"javascript",
"typescript",
"cli"
],
"author": "Ethan Arrowood",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ethan-Arrowood/matterhorn-cli/issues"
},
"homepage": "https://github.com/Ethan-Arrowood/matterhorn-cli#readme",
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/inquirer": "0.0.43",
"@types/node": "^10.12.18",
"@types/shelljs": "^0.8.1",
"eslint": "^5.12.0",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^21.0.2"
},
"dependencies": {
"chalk": "^2.4.2",
"figlet": "^1.2.1",
"inquirer": "^6.2.1",
"shelljs": "^0.8.3"
}
}