-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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": "react-native-set-version",
"version": "1.1.2",
"description": "Set the version in package.json, android/app/build.gradle and info.plist",
"license": "MIT",
"bin": {
"setVersion": "./build/index.js",
"set-version": "./build/index.js"
},
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "/~https://github.com/novom/react-native-set-version"
},
"keywords": [
"version",
"setVersion",
"set-version",
"node",
"javascript",
"react-native",
"react",
"semver"
],
"bugs": {
"url": "/~https://github.com/novom/react-native-set-version/issues"
},
"homepage": "/~https://github.com/novom/react-native-set-version#readme",
"main": "index.js",
"author": "Novom Interactive",
"scripts": {
"prepublishOnly": "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"
},
"dependencies": {
"chalk": "^2.4.2",
"gradle-to-js": "^2.0.0",
"manifest-android": "^0.1.1",
"plist": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^24.8.0"
}
}