forked from thekevinbrown/react-native-schemes-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "react-native-schemes-manager",
"version": "1.0.0",
"description": "Helps to manage React Native XCode projects that use multiple schemes to manage things like environment variables.",
"main": "index.js",
"bin": {
"react-native-schemes-manager": "index.js"
},
"scripts": {
"postinstall": "node index.js verify-config",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thinkmill/react-native-schemes-manager.git"
},
"keywords": [
"react",
"native",
"xcode",
"scheme",
"build",
"configuration",
"environment",
"variables"
],
"author": "Kevin Brown",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thinkmill/react-native-schemes-manager/issues"
},
"homepage": "https://github.com/Thinkmill/react-native-schemes-manager#readme",
"dependencies": {
"chalk": "^1.1.3",
"glob": "^7.1.1",
"path": "^0.12.7",
"plist": "^2.0.1",
"xcode": "^0.9.1",
"yargs": "^6.6.0"
},
"devDependencies": {
"eslint": "^3.11.0",
"eslint-config-keystone": "^3.0.0",
"eslint-config-keystone-react": "^1.0.0",
"eslint-plugin-react": "^6.9.0"
}
}