-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
58 lines (58 loc) · 1.38 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
53
54
55
56
57
58
{
"name": "framework7-cli",
"version": "8.0.4",
"description": "Framework7 command line utility (CLI)",
"main": "index.js",
"bin": {
"framework7": "./index.js",
"f7": "./index.js"
},
"scripts": {
"release": "node scripts/release.js",
"lint": "eslint .",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -u -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/framework7io/framework7-cli.git"
},
"keywords": [
"framework7",
"cli",
"mobile",
"app",
"cordova",
"ios",
"android"
],
"author": "Vladimir Kharlampidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/framework7io/framework7-cli/issues"
},
"homepage": "https://github.com/framework7io/framework7-cli#readme",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"commander": "^7.2.0",
"cpy": "^7.3.0",
"exec-sh": "^0.4.0",
"express": "^4.17.1",
"inquirer": "^8.1.0",
"log-symbols": "^4.0.5",
"multer": "^1.4.2",
"opn": "^6.0.0",
"ora": "^5.4.1",
"rimraf": "^3.0.2",
"sharp": "^0.28.3"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2"
}
}