forked from expo/browser-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
{
"name": "@expo/browser-polyfill",
"version": "0.0.1-alpha.5",
"sideEffects": false,
"description": "Browser polyfill for making React Native compatible with web libs like pixi.js, three.js, phaser.js",
"homepage": "https://github.com/expo/browser-polyfill#readme",
"bugs": {
"url": "https://github.com/expo/browser-polyfill/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/browser-polyfill.git"
},
"keywords": [
"expo",
"browser",
"polyfill",
"react-native",
"react",
"web",
"dom",
"document",
"shim"
],
"private": false,
"author": {
"email": "[email protected]",
"name": "Evan Bacon"
},
"license": "MIT",
"files": [
"src"
],
"pre-push": [
"lint"
],
"directories": {
"example": "examples",
"lib": "src"
},
"readmeFilename": "README.md",
"main": "src/index",
"scripts": {
"lint:example": "eslint example/",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"sync-example": "rsync -rv src example/node_modules/@expo/browser-polyfill && rsync -rv package.json example/node_modules/@expo/browser-polyfill"
},
"peerDependencies": {
"expo": "^32.0.6",
"expo-file-system": "*",
"react": "^16.8.6",
"react-native": "*"
},
"devDependencies": {
"babel-preset-expo": "^5.1.1",
"eslint": "^5.16.0",
"eslint-config-universe": "^1.0.7",
"eslint-plugin-jest": "^22.4.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-expo": "^32.0.0",
"prettier": "^1.17.0"
},
"dependencies": {
"expo-2d-context": "^0.0.2",
"fbemitter": "^2.1.1",
"text-encoding": "^0.7.0",
"xmldom-qsa": "^1.0.3"
}
}