forked from gorebill/ionic-4-version
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.68 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ionic-4-version",
"description": "Version your Ionic app in a `npm version` fashion.",
"license": "MIT",
"author": "gorebill <gorebill@163.com>",
"repository": "https://github.com/gorebill/ionic-4-version.git",
"version": "1.0.1",
"main": "lib/index.js",
"bin": {
"ionic-version": "lib/cli.js"
},
"scripts": {
"build": "rimraf lib && babel src -d lib",
"precommit": "lint-staged",
"docs": "./docs.sh",
"prepublish": "yarn build",
"test": "yarn build && ava"
},
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.11.0",
"cordova-config": "github:CodeDoctor34/cordova-config",
"resolve-from": "^4.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"fs-extra": "^4.0.2",
"husky": "^0.14.3",
"import-sort-cli": "^4.2.0",
"import-sort-parser-babylon": "^4.2.0",
"import-sort-style-eslint": "^4.2.0",
"injectmd": "^1.0.0",
"jsdoc-to-markdown": "^3.0.0",
"lint-staged": "^7.0.5",
"prettier": "^1.7.0",
"prettier-package-json": "^1.6.0",
"rimraf": "^2.6.2",
"sort-json": "^1.6.1",
"tar": "^4.4.2",
"temp": "^0.8.3"
},
"keywords": [
"CFBundleShortVersionString",
"build",
"bump",
"gradle",
"info",
"ionic",
"npm-version",
"plist",
"semver",
"version",
"versionName"
],
"lint-staged": {
"*.json": [
"sort-json",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.{js}": [
"import-sort --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}