-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "react-native-today-widget",
"description": "Today Widget extension (iOS) development using React Native",
"version": "1.0.0",
"author": "Matěj Kříž <[email protected]>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/matejkriz/react-native-today-widget"
},
"keywords": [
"react-native",
"today widget",
"ios",
"extension"
],
"main": "lib/index.js",
"bin": {
"bundle-id": "./bin/setBundleId.rb",
"embed-extension": "./bin/embedExtension.rb"
},
"scripts": {
"flow": "flow",
"postinstall": "./bin/setBundleId.rb",
"prettier": "prettier --bracket-spacing --single-quote --tab-width 2 --trailing-comma es5 --parser babylon --print-width 80 --write \"{{components,lib,pages,scripts,themes},__{tests,mocks}__}/**/*.js\"",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-preset-react-native": "1.9.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-react-native": "^2.3.2",
"flow-bin": "0.42.0",
"jest": "20.0.3",
"prettier": "^1.3.1",
"react": "16.0.0-beta.5",
"react-native": "0.49",
"react-test-renderer": "16.0.0-alpha.6"
},
"jest": {
"preset": "react-native"
},
"peerDependencies": {
"react": ">=16.0.0-alpha.12",
"react-native": ">=0.49.0"
},
"rnpm": {
"commands": {
"postlink": "./node_modules/.bin/embed-extension"
}
}
}