-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 860 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": "parcelmon",
"version": "0.0.9",
"description": "Cli tool for running node server through parcel",
"bin": {
"parcelmon": "dist/index.js"
},
"main": "dist/index.js",
"repository": "https://github.com/Vidlec/parcelmon.git",
"author": "Josef Vidlák <vidlec@gmail.com>",
"license": "MIT",
"private": false,
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc"
},
"peerDependencies": {
"parcel-bundler": "^1.12.3"
},
"dependencies": {
"app-root-path": "^2.2.1",
"chalk": "^2.4.2",
"yargs": "^13.3.0"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/node": "^12.6.8",
"@types/parcel-bundler": "^1.12.0",
"@types/yargs": "^13.0.2",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}