forked from novom/react-native-set-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@qeepsake/react-native-marketing-version",
"version": "1.1.2",
"description": "Set the version in package.json, android/app/build.gradle and info.plist",
"license": "MIT",
"bin": {
"set-version": "./build/index.js"
},
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Qeepsake/react-native-marketing-version"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"version",
"setVersion",
"set-version",
"node",
"javascript",
"react-native",
"react",
"semver"
],
"bugs": {
"url": "https://github.com/Qeepsake/react-native-marketing-version/issues"
},
"homepage": "https://github.com/Qeepsake/react-native-marketing-version#readme",
"main": "index.js",
"author": "Novom Interactive",
"scripts": {
"prepublishOnly": "pinst --disable && yarn build",
"build": "babel src --out-dir build --ignore \"src/**/*.spec.js\",\"src/**/*.test.js\"",
"lint": "eslint .",
"start": "node .src/index.js",
"test": "yarn lint & yarn unitTests",
"unitTests": "jest --runInBand",
"postpublish": "pinst --enable",
"pre-commit": "lint-staged",
"postinstall": "husky install"
},
"dependencies": {
"chalk": "^2.4.2",
"plist": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"babel-eslint": "^10.0.1",
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^7.0.4",
"jest": "^24.8.0",
"lint-staged": "^12.3.3",
"pinst": "^2.1.6",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2"
}
}