-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 881 Bytes
/
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
{
"name": "brie",
"version": "1.0.0",
"description": "CLI for initializing new github projects",
"main": "index.js",
"bin": "./lib/cli.js",
"scripts": {
"test": "jest --config jestconfig.json",
"start": "nodemon --exec ts-node -- lib/cli.js",
"ts-node": "ts-node lib/cli.js",
"build": "tsc"
},
"files": [
"lib/**/*"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"core-js": "^3.6.1",
"inquirer": "^7.0.1",
"mkdirp": "^0.5.1",
"ora": "^4.0.3",
"typescript": "^3.7.4"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/core-js": "^2.5.2",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.25",
"@types/ora": "^3.2.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0"
}
}