forked from sghiassy/react-native-sglistview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "react-native-sglistview",
"version": "0.3.5",
"description": "A React Native module to provide a memory efficent ListView over the native implementation",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/.bin/babel --source-maps=true --out-dir=dist lib",
"lint": "eslint lib",
"posttest": "mv .babelrc babelrc",
"pretest": "mv babelrc .babelrc; eslint lib test; npm run build",
"test": "./node_modules/.bin/mocha || mv .babelrc babelrc",
"x": "open example/ios/AwesomeProject.xcodeproj"
},
"keywords": [
"ReactNative",
"ListView"
],
"author": {
"name": "Shaheen Ghiassy",
"email": "[email protected]",
"url": "http://shaheenghiassy.com"
},
"license": "MIT",
"homepage": "https://github.com/sghiassy/react-native-sglistview",
"peerDependencies": {
"react": ">=0.14.0 || ^15.0.0",
"react-native": ">=0.25.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"enzyme": "^2.3.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.5.3",
"react-dom": "^15.1.0",
"react-native-mock": "^0.2.3",
"should": "^9.0.2"
},
"files": [
"*.js",
"dist",
"lib"
],
"dependencies": {
"react": "^15.4.2",
"react-native": "^0.41.2"
}
}