forked from Dreamacro/jsbox-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.04 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
{
"name": "jsbox-cli",
"version": "1.2.1",
"description": "JSBox Development Utilities on Node",
"bin": {
"jsbox": "./bin/jsbox"
},
"files": [
"bin",
"dist",
"package.json",
"package-lock.json"
],
"scripts": {
"build": "npm run lint && rimraf dist && tsc",
"lint": "tslint -p .",
"dev": "tsc -w"
},
"author": "Dreamacro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dreamacro/jsbox-cli.git"
},
"keywords": [
"jsbox",
"jsbox-cli"
],
"devDependencies": {
"@types/archiver": "^3.0.0",
"@types/form-data": "^2.2.1",
"@types/got": "^9.6.0",
"@types/lowdb": "^1.0.9",
"@types/node": "^12.0.10",
"rimraf": "^2.6.3",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.2"
},
"dependencies": {
"archiver": "^3.0.0",
"chalk": "^2.4.2",
"chokidar": "^3.0.1",
"commander": "^2.20.0",
"form-data": "^2.4.0",
"got": "^9.6.0",
"lodash": "^4.17.11",
"lowdb": "^1.0.0"
}
}