-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·52 lines (52 loc) · 1.46 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
51
52
{
"name": "@tizentv/create-tizen-app",
"version": "1.0.7",
"description": "Create a tizen app with your favorite tools",
"main": "index.js",
"scripts": {
"init": "mkdir .test",
"start": "cd .test && node ../dist/cli.js",
"doctor": "cd .test/doctor && node ../../dist/cli.js doctor",
"webpack": "webpack --watch --mode=development",
"release": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "https://github.com/Samsung/create-tizen-app.git"
},
"keywords": [
"tizen",
"tizentv",
"create-tizen-app",
"tizen-app",
"project wizard"
],
"author": "",
"license": "ISC",
"preferGlobal": true,
"private": false,
"bin": {
"create-tizen-app": "dist/cli.js"
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.13",
"@types/prettier": "^2.0.2",
"prettier": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"winston": "^3.3.3"
},
"dependencies": {
"chalk": "^4.1.0",
"cmdify": "0.0.4",
"commander": "^5.1.0",
"inquirer": "^7.2.0",
"lodash": "^4.17.15",
"log-symbols": "^4.0.0",
"log-update": "^4.0.0"
}
}