-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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": "miojs",
"version": "1.1.6",
"description": "This is a cli tool to generate projects for MIOJSLibs.",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"prod": "cross-env NODE_ENV='prod' webpack",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/miolabs/MIOBuildTool"
},
"keywords": [
"demo",
"typescript",
"framework-generator",
"wip"
],
"bin": {
"miojs": "./index.js"
},
"author": "Mátyás Budavári <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miolabs/MIOBuildTool/issues"
},
"homepage": "https://miolabs.github.io/MIOBuildTool/",
"dependencies": {},
"devDependencies": {
"@types/fs-extra": "^5.0.1",
"@types/node": "^9.6.2",
"@types/xml2js": "^0.4.2",
"chalk": "^2.3.2",
"commander": "^2.15.1",
"cross-env": "^5.1.4",
"fs-extra": "^5.0.0",
"handlebars": "^4.0.11",
"minimist": "^1.2.0",
"promisify-child-process": "^1.0.6",
"ts-loader": "^4.1.0",
"typescript": "^2.8.1",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"xml2js": "^0.4.19"
}
}