forked from jsdf/react-native-refreshable-listview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
63
64
65
66
67
{
"name": "react-native-refreshable-listview",
"version": "1.3.0",
"description": "A pull-to-refresh ListView which shows a loading spinner while your data reloads",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"watch": "watchy -w lib -- bash -c 'cp -a lib/ test/RefreshableListViewTest/node_modules/react-native-refreshable-listview/lib/'",
"jest": "BABEL_JEST_STAGE=0 jest $JEST_ARGS",
"test": "npm run lint && npm run jest"
},
"author": "James Friend <james@jsdf.co> (http://jsdf.co/)",
"license": "ISC",
"keywords": [
"react",
"react-native",
"react-component",
"react-native-component",
"mobile",
"ui"
],
"homepage": "https://github.com/jsdf/react-native-refreshable-listview",
"bugs": "https://github.com/jsdf/react-native-refreshable-listview/issues",
"repository": {
"type": "git",
"url": "git://github.com/jsdf/react-native-refreshable-listview.git"
},
"jest": {
"scriptPreprocessor": "<rootDir>/test/support/preprocessor.js",
"setupEnvScriptFile": "<rootDir>/node_modules/babel-core/browser-polyfill.js",
"setupTestFrameworkScriptFile": "<rootDir>/test/support/setupTestFramework.js",
"unmockedModulePathPatterns": [
"<rootDir>/test/support",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/babel-core",
"<rootDir>/node_modules/source-map-support",
"<rootDir>/node_modules/absolute-path",
"<rootDir>/node_modules/xtend",
"<rootDir>/node_modules/jasmine-object-matchers-jest",
"<rootDir>/node_modules/is-promise"
],
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"devDependencies": {
"absolute-path": "0.0.0",
"babel-core": "^5.2.15",
"eslint": "^0.19.0",
"eslint-plugin-react": "^2.1.1",
"jasmine-object-matchers-jest": "^0.1.0",
"jest-cli": "^0.4.1",
"react": "^0.13.1",
"source-map-support": "^0.2.10",
"watchy": "^0.6.4",
"xtend": "^4.0.0"
},
"dependencies": {
"is-promise": "^2.0.0"
}
}