forked from Chion82/react-native-web-extended
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
68
69
70
71
72
{
"name": "react-native-web-extended",
"version": "0.0.7",
"description": "React Native for Web",
"main": "dist/index.js",
"files": [
"dist",
"src",
"!**/__tests__"
],
"scripts": {
"build": "del ./dist && mkdir dist && babel src -d dist --ignore **/__tests__",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm run lint && npm run test:jest",
"test:jest": "jest",
"test:watch": "npm run test:jest -- --watch"
},
"dependencies": {
"@piranna/react-pull-to-refresh": "^1.1.2",
"prop-types": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-react-native": "^4.0.0",
"del-cli": "^1.1.0",
"enzyme": "^3.3.0",
"eslint": "^4.19.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"file-loader": "^1.1.11",
"jest": "^22.4.3",
"react": "^16.3.2",
"react-addons-test-utils": "^15.6.2",
"react-art": "^16.3.2",
"react-dom": "^16.3.2",
"react-native-web": "^0.6.1",
"react-test-renderer": "^16.3.2",
"url-loader": "^1.0.1"
},
"peerDependencies": {
"react": "~15.4.1",
"react-native-web": "^0.6.1"
},
"author": "Chion82",
"contributors": [
"Jesús Leganés-Combarro 'piranna' <piranna@gmail.com>"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/Chion82/react-native-web-extended.git"
},
"tags": [
"react"
],
"keywords": [
"react",
"react-component",
"react-native",
"web"
],
"jest": {
"testEnvironment": "jsdom",
"timers": "fake"
}
}