-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
70
71
{
"name": "react-native-semver-update",
"version": "1.1.2",
"description": "Automaticly updates a project version and build number for react-native",
"preferGlobal": true,
"bin": {
"rnsemup": "./bin.js"
},
"scripts": {
"build": "webpack --config ./config/webpack.prod.js",
"dev": "webpack --watch --config ./config/webpack.dev.js",
"dev:live": "nodemon ./dist/index.js",
"lint": "eslint ./src",
"start": "node ./dist/index.js",
"postinstall": "node ./postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zmnv/react-native-semver-update.git"
},
"keywords": [
"react",
"native",
"semver",
"update",
"menu",
"automatization",
"cli"
],
"author": "Valeriy Zimnev (@zmnv)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zmnv/react-native-semver-update/issues"
},
"homepage": "https://github.com/zmnv/react-native-semver-update#readme",
"dependencies": {
"@babel/runtime": "^7.6.3",
"chalk": "^2.4.2",
"commander": "^4.0.1",
"inquirer": "^7.0.0",
"semver": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.18.11",
"raw-loader": "^2.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
]
}
}