generated from etclabscore/pristine-typescript
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1016 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
{
"name": "@etclabscore/pristine-cli",
"version": "0.0.0-development",
"description": "A cli to make it super easy to select a Pristine github template to start from.",
"files": [
"build"
],
"bin": {
"pristine-cli": "build/index.js"
},
"scripts": {
"start": "npm run build && node build/index.js",
"build": "tsc",
"lint": "tslint --fix -p .",
"test": "npm run lint && jest --coverage --passWithNoTests"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/inquirer": "^6.0.3",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.135",
"@types/node-fetch": "^2.3.7",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"execa": "^2.0.3",
"github-download": "^0.5.0",
"inquirer": "^6.4.1",
"inquirer-autocomplete-prompt": "https://github.com/shanejonas/inquirer-autocomplete-prompt.git",
"lodash": "^4.17.11",
"node-fetch": "^2.6.0"
}
}