-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
62 lines (62 loc) · 2.1 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
{
"name": "react-native-sglistview",
"version": "0.4.5",
"description": "A React Native module to provide a memory efficent ListView over the native implementation",
"main": "dist/index.js",
"scripts": {
"build": "yarn config:enable:babelrc; ./node_modules/.bin/babel --source-maps=true --out-dir=dist lib; yarn config:disable:babelrc",
"config:disable:babelrc": "./scripts/disable_babel_config.sh",
"config:enable:babelrc": "./scripts/enable_babel_config.sh",
"dev:link": "wml add ./dist ../react-native-sglistview-example/node_modules/react-native-sglistview/dist",
"lint": "eslint lib",
"prepublish": "yarn run test",
"posttest": "yarn config:disable:babelrc",
"pretest": "yarn config:enable:babelrc; eslint lib test; yarn run build",
"test": "yarn config:enable:babelrc; ./node_modules/.bin/mocha || yarn config:disable:babelrc",
"x": "echo 'The example app has moved to https://github.com/sghiassy/react-native-sglistview-example'"
},
"keywords": [
"ReactNative",
"ListView"
],
"author": {
"name": "Shaheen Ghiassy",
"email": "shaheen.ghiassy@gmail.com",
"url": "http://shaheenghiassy.com"
},
"license": "MIT",
"homepage": "https://github.com/sghiassy/react-native-sglistview",
"peerDependencies": {},
"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",
"create-react-class": "^15.6.2",
"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",
"prop-types": "^15.5.7",
"react": "^15.4.2",
"react-dom": "^15.1.0",
"react-native": "^0.42.0",
"react-native-mock": "^0.2.3",
"should": "^9.0.2"
},
"files": [
"*.js",
"dist"
],
"bugs": {
"url": "https://github.com/sghiassy/react-native-sglistview/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sghiassy/react-native-sglistview"
}
}