This repository was archived by the owner on Nov 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "rsx",
"version": "0.1.13",
"description": "A CLI tool for React Native projects",
"main": "./src/getCommands.js",
"scripts": {
"test": "eslint index.js src/ tests/ && istanbul cover _mocha --recursive tests/"
},
"bin": {
"rsx": "bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-contrib/rsx.git"
},
"author": "React Native Contrib Community (https://github.com/react-native-contrib)",
"contributors": [
"Hassan Khan <contact@hassankhan.me>"
],
"engines": {
"node": ">= 4.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-contrib/rsx/issues"
},
"keywords": [
"react-native",
"native-modules"
],
"homepage": "https://github.com/react-native-contrib/rsx#readme",
"dependencies": {
"commander": "^2.9.0",
"rsx-common": "^0.1.8",
"rsx-plugin-new": "^0.1.6",
"rsx-plugin-platforms": "^0.1.8",
"rsx-plugin-plugins": "^0.1.6",
"rsx-plugin-run": "^0.1.5",
"rsx-plugin-status": "^0.1.7",
"update-notifier": "^0.7.0"
},
"devDependencies": {
"babel-eslint": "^4.1.5",
"chai": "^3.5.0",
"eslint": "^1.10.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mock-require": "^1.2.1",
"rewire": "^2.5.1",
"sinon": "^1.17.4"
}
}