forked from rnpm/rnpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "rnpm",
"version": "1.9.0",
"description": "React Native Package Manager",
"main": "./src/getCommands.js",
"scripts": {
"test": "jest"
},
"jest": {
"testDirectoryName": "test",
"collectCoverage": true,
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js"
},
"bin": {
"rnpm": "bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rnpm/rnpm.git"
},
"author": "Amazing React Native Community (https://github.com/facebook/react-native)",
"contributors": [
"Alexey Kureev <kureev-mail@ya.ru> (https://github.com/Kureev)",
"Mike Grabowski <grabbou@gmail.com> (https://github.com/grabbou)"
],
"engines": {
"node": ">= 4.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rnpm/rnpm/issues"
},
"keywords": [
"react-native",
"native-modules",
"packager",
"rnpm"
],
"homepage": "https://github.com/rnpm/rnpm#readme",
"dependencies": {
"commander": "^2.9.0",
"glob": "^7.0.1",
"lodash": "^3.10.1",
"rnpm-plugin-install": "^1.1.0",
"rnpm-plugin-link": "^1.8.0",
"update-notifier": "^0.6.0",
"xmldoc": "^0.4.0"
},
"devDependencies": {
"babel-eslint": "^4.1.5",
"eslint": "^1.9.0",
"mock-fs": "^3.9.0",
"mock-require": "^1.2.1",
"rewire": "^2.5.1",
"jest-cli": "^0.9.0-fb2"
}
}